diff --git a/openedx/core/lib/url_utils.py b/openedx/core/lib/url_utils.py index b4e87ff5bb..f31d1ab30a 100644 --- a/openedx/core/lib/url_utils.py +++ b/openedx/core/lib/url_utils.py @@ -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):