Back to r again

This commit is contained in:
cclauss
2019-03-19 07:50:22 +01:00
committed by GitHub
parent 9a0c995885
commit 6a41d01c67

View File

@@ -20,7 +20,7 @@ def unquote_slashes(text):
"""
Unquote slashes quoted by `quote_slashes`
"""
return re.sub(u'(;;|;_)', _unquote_slashes, text)
return re.sub(r'(;;|;_)', _unquote_slashes, text)
def _quote_slashes(match):