Commit 43760a37 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki Committed by Arnaud Fontaine

py2/py3: use urlnorm in Python 3 as well.

parent e33d4c97
......@@ -1691,13 +1691,11 @@ class ScalarMaxConflictResolver(persistent.Persistent):
# URL Normaliser #
###################
from Products.PythonScripts.standard import url_unquote
# No new release of urlnorm since 2016 and no py3 support
urlnorm = None
if six.PY2:
try:
import urlnorm
except ImportError:
warnings.warn("urlnorm lib is not installed", DeprecationWarning)
try:
import urlnorm
except ImportError:
warnings.warn("urlnorm lib is not installed", DeprecationWarning)
from six.moves.urllib.parse import urlsplit, urlunsplit, urljoin
# Regular expressions
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment