summaryrefslogtreecommitdiff
path: root/src/saml2/ecp_client.py
diff options
context:
space:
mode:
authorClint Byrum <clint@fewbar.com>2015-05-27 00:11:32 -0700
committerClint Byrum <clint@fewbar.com>2015-05-28 09:50:57 -0700
commitc76eaf78fe8000efa951a3c75ede1a32beb3c9a4 (patch)
tree42e616826e50434a78c8949645255175819d1578 /src/saml2/ecp_client.py
parented5d61787ee45b7eb18631aa0d0eb15af75daf22 (diff)
downloadpysaml2-c76eaf78fe8000efa951a3c75ede1a32beb3c9a4.tar.gz
Fix more renamed modules/functions for py3
In doing so it was discovered that the 'implements' function has been replaced by a class decorator, which must be used in python3. Also commented out method arguments seem to expose internal py.test problems in python3. Removing them seems fine since we can look in revision history if we need to find the exact way it was used before.
Diffstat (limited to 'src/saml2/ecp_client.py')
-rw-r--r--src/saml2/ecp_client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/saml2/ecp_client.py b/src/saml2/ecp_client.py
index d3dd757d..c41a046a 100644
--- a/src/saml2/ecp_client.py
+++ b/src/saml2/ecp_client.py
@@ -7,7 +7,7 @@ Contains a class that can do SAML ECP Authentication for other python
programs.
"""
-import cookielib
+from six.moves import http_cookiejar as cookielib
import logging
from saml2 import soap