cubicweb/web/webconfig.py
changeset 12567 26744ad37953
parent 12542 85194bd49119
child 12584 6eba53763482
--- a/cubicweb/web/webconfig.py	Fri Apr 05 17:21:14 2019 +0200
+++ b/cubicweb/web/webconfig.py	Fri Apr 05 17:58:19 2019 +0200
@@ -25,8 +25,6 @@
 from uuid import uuid4
 from os.path import dirname, join, exists, split, isdir
 
-from six import text_type
-
 from logilab.common.decorators import cached, cachedproperty
 from logilab.common.configuration import Method, merge_options
 
@@ -134,8 +132,6 @@
         try:
             user = self['anonymous-user'] or None
             passwd = self['anonymous-password']
-            if user:
-                user = text_type(user)
         except KeyError:
             user, passwd = None, None
         except UnicodeDecodeError:
@@ -301,7 +297,7 @@
     def sign_text(self, text):
         """sign some text for later checking"""
         # hmac.new expect bytes
-        if isinstance(text, text_type):
+        if isinstance(text, str):
             text = text.encode('utf-8')
         # replace \r\n so we do not depend on whether a browser "reencode"
         # original message using \r\n or not