Skip to content
Snippets Groups Projects
Commit 073737dd authored by Andreas Schärtl's avatar Andreas Schärtl
Browse files

fix-rdf-file: also add lt/gt to bad chars

parent 5b0bffba
Branches
No related tags found
No related merge requests found
...@@ -9,7 +9,7 @@ def fix_quoted(s: str) -> str: ...@@ -9,7 +9,7 @@ def fix_quoted(s: str) -> str:
payload = s.strip('"') payload = s.strip('"')
bad_chars = ( bad_chars = (
'|', '\\', ' ', '^' '|', '\\', ' ', '^', '<', '>'
) )
for c in bad_chars: for c in bad_chars:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment