cubicweb/server/test/unittest_ldapsource.py
changeset 12567 26744ad37953
parent 12523 4d68d20427de
child 12626 32ee89340e59
--- a/cubicweb/server/test/unittest_ldapsource.py	Fri Apr 05 17:21:14 2019 +0200
+++ b/cubicweb/server/test/unittest_ldapsource.py	Fri Apr 05 17:58:19 2019 +0200
@@ -20,8 +20,6 @@
 Those tests expect to have slapd, python-ldap3 and ldapscripts packages installed.
 """
 
-from __future__ import print_function
-
 import os
 import sys
 import shutil
@@ -31,9 +29,6 @@
 import unittest
 from os.path import join
 
-from six import string_types
-from six.moves import range
-
 from cubicweb import AuthenticationError, ValidationError
 from cubicweb.devtools.testlib import CubicWebTC
 from cubicweb.devtools.httptest import get_available_port
@@ -180,7 +175,7 @@
         """
         modcmd = ['dn: %s' % dn, 'changetype: add']
         for key, values in mods.items():
-            if isinstance(values, string_types):
+            if isinstance(values, str):
                 values = [values]
             for value in values:
                 modcmd.append('%s: %s' % (key, value))
@@ -200,7 +195,7 @@
         modcmd = ['dn: %s' % dn, 'changetype: modify']
         for (kind, key), values in mods.items():
             modcmd.append('%s: %s' % (kind, key))
-            if isinstance(values, string_types):
+            if isinstance(values, str):
                 values = [values]
             for value in values:
                 modcmd.append('%s: %s' % (key, value))