cubicweb/sobjects/services.py
changeset 12567 26744ad37953
parent 12346 b3f45d96a179
--- a/cubicweb/sobjects/services.py	Fri Apr 05 17:21:14 2019 +0200
+++ b/cubicweb/sobjects/services.py	Fri Apr 05 17:58:19 2019 +0200
@@ -19,8 +19,6 @@
 
 import threading
 
-from six import text_type
-
 from cubicweb.server import Service
 from cubicweb.predicates import match_user_groups, match_kwargs
 
@@ -111,7 +109,7 @@
 
     def call(self, login, password, email=None, groups=None, **cwuserkwargs):
         cnx = self._cw
-        if isinstance(password, text_type):
+        if isinstance(password, str):
             # password should *always* be utf8 encoded
             password = password.encode('UTF8')
         cwuserkwargs['login'] = login