PEP8: fix E713: test for membership should be 'not in'
[sfrench/samba-autobuild/.git] / source4 / dsdb / tests / python / acl.py
index 3251cb53fa62809862339fbb5827365f296baa52..aaa7995be977b5f03efb85f81b318be1aa524c86 100755 (executable)
@@ -51,7 +51,7 @@ if len(args) < 1:
     sys.exit(1)
 
 host = args[0]
-if not "://" in host:
+if "://" not in host:
     ldaphost = "ldap://%s" % host
 else:
     ldaphost = host