summaryrefslogtreecommitdiff
path: root/src/saml2/ident.py
diff options
context:
space:
mode:
authorClint Byrum <clint@fewbar.com>2015-05-20 23:53:25 -0700
committerClint Byrum <clint@fewbar.com>2015-05-21 00:13:26 -0700
commit29221328be15255035b9ba221c8efaac52a68431 (patch)
tree78ecff3809ddb23c23353d0bcb22fad57ac57a9d /src/saml2/ident.py
parentda21b279e2fa7d5c94ec370c02a7507f91d8ce43 (diff)
downloadpysaml2-29221328be15255035b9ba221c8efaac52a68431.tar.gz
Fix import issues with python3
Relative imports are different and some modules were renamed.
Diffstat (limited to 'src/saml2/ident.py')
-rw-r--r--src/saml2/ident.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/saml2/ident.py b/src/saml2/ident.py
index c7090bce..49f8a632 100644
--- a/src/saml2/ident.py
+++ b/src/saml2/ident.py
@@ -4,8 +4,8 @@ import logging
import six
from hashlib import sha256
-from urllib import quote
-from urllib import unquote
+from six.moves.urllib.parse import quote
+from six.moves.urllib.parse import unquote
from saml2 import SAMLError
from saml2.s_utils import rndstr
from saml2.s_utils import PolicyError