From bbaa739bbda4685fa5e38ea0d939496398e11ebf Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 2 Jun 2014 01:33:43 +0200 Subject: Remove remaining instance of pep8 E211 (too many spaces before operator). Signed-Off-By: Jelmer Vernooij Reviewed-by: Andrew Bartlett Change-Id: I9af3bf582bba8fc1094addb12cd0a5ce04406b5b --- python/samba/schema.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/samba/schema.py') diff --git a/python/samba/schema.py b/python/samba/schema.py index 5c8f506f26..4e6381306c 100644 --- a/python/samba/schema.py +++ b/python/samba/schema.py @@ -160,7 +160,7 @@ def get_linked_attributes(schemadn,schemaldb): attrs = ["linkID", "lDAPDisplayName"] res = schemaldb.search(expression="(&(linkID=*)(!(linkID:1.2.840.113556.1.4.803:=1))(objectclass=attributeSchema)(attributeSyntax=2.5.5.1))", base=schemadn, scope=SCOPE_ONELEVEL, attrs=attrs) attributes = {} - for i in range (0, len(res)): + for i in range(0, len(res)): expression = "(&(objectclass=attributeSchema)(linkID=%d)(attributeSyntax=2.5.5.1))" % (int(res[i]["linkID"][0])+1) target = schemaldb.searchone(basedn=schemadn, expression=expression, @@ -178,7 +178,7 @@ def get_dnsyntax_attributes(schemadn,schemaldb): base=schemadn, scope=SCOPE_ONELEVEL, attrs=["linkID", "lDAPDisplayName"]) attributes = [] - for i in range (0, len(res)): + for i in range(0, len(res)): attributes.append(str(res[i]["lDAPDisplayName"])) return attributes -- cgit