summaryrefslogtreecommitdiff
path: root/src/saml2/eptid.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/saml2/eptid.py')
-rw-r--r--src/saml2/eptid.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/saml2/eptid.py b/src/saml2/eptid.py
index 65108d4c..b6186fde 100644
--- a/src/saml2/eptid.py
+++ b/src/saml2/eptid.py
@@ -8,8 +8,6 @@ import hashlib
import logging
import shelve
-import six
-
logger = logging.getLogger(__name__)
@@ -38,12 +36,12 @@ class Eptid:
return "!".join([idp, sp, hashval])
def __getitem__(self, key):
- if six.PY3 and isinstance(key, bytes):
+ if isinstance(key, bytes):
key = key.decode("utf-8")
return self._db[key]
def __setitem__(self, key, value):
- if six.PY3 and isinstance(key, bytes):
+ if isinstance(key, bytes):
key = key.decode("utf-8")
self._db[key] = value