ipaldap: Remove extraneous long (included in six.int_types)

Reviewed-By: Tomas Babej <tbabej@redhat.com>
This commit is contained in:
Petr Viktorin 2015-09-23 12:33:16 +02:00 committed by Tomas Babej
parent f67155486b
commit 88fc27da52

View File

@ -833,7 +833,7 @@ class LDAPClient(object):
return 'TRUE'
else:
return 'FALSE'
elif isinstance(val, (unicode, six.integer_types, long, Decimal, DN)):
elif isinstance(val, (unicode, six.integer_types, Decimal, DN)):
return value_to_utf8(val)
elif isinstance(val, DNSName):
return val.to_text()