cubicweb/web/views/authentication.py
changeset 12567 26744ad37953
parent 12279 e2953e0de494
--- a/cubicweb/web/views/authentication.py	Fri Apr 05 17:21:14 2019 +0200
+++ b/cubicweb/web/views/authentication.py	Fri Apr 05 17:58:19 2019 +0200
@@ -17,8 +17,6 @@
 # with CubicWeb.  If not, see <http://www.gnu.org/licenses/>.
 """user authentication component"""
 
-from six import text_type
-
 from logilab.common.deprecation import class_renamed
 from logilab.common.textutils import unormalize
 
@@ -114,8 +112,8 @@
         self.sessionid = make_uid(unormalize(user.login))
         self.data = {}
 
-    def __unicode__(self):
-        return '<session %s (0x%x)>' % (text_type(self.user.login), id(self))
+    def __str__(self):
+        return '<session %s (0x%x)>' % (self.user.login, id(self))
 
     @property
     def anonymous_session(self):