Skip to content
Snippets Groups Projects
Commit f612eb5a authored by ulif's avatar ulif
Browse files

Fix pylint change that in fact broke string.

parent bb53d836
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,7 @@ WORDLISTS_DIR = os.path.abspath(
RE_LANG_CODE = re.compile('^[a-zA-Z]{2}$')
#: Special chars inserted on demand
SPECIAL_CHARS = r"~!#$%^&*()-=+[]\{}:;\"'<>?/0123456789"
SPECIAL_CHARS = r"~!#$%^&*()-=+[]\{}:;" + r'"' + r"'<>?/0123456789"
GPL_TEXT = (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment