PEP8: fix E201: whitespace after '('
[nivanova/samba-autobuild/.git] / python / samba / netcmd / dbcheck.py
index 073510c1a26d05989b2b3b3d278da02fb0cd7b38..6d4efaaa41a989c1cd45334984d4288ea2bb1d47 100644 (file)
@@ -108,7 +108,7 @@ class cmd_dbcheck(Command):
             samdb_schema = SamDB(session_info=system_session(), url=None,
                                  credentials=creds, lp=lp)
 
-        scope_map = { "SUB": ldb.SCOPE_SUBTREE, "BASE": ldb.SCOPE_BASE, "ONE":ldb.SCOPE_ONELEVEL }
+        scope_map = {"SUB": ldb.SCOPE_SUBTREE, "BASE": ldb.SCOPE_BASE, "ONE":ldb.SCOPE_ONELEVEL }
         scope = scope.upper()
         if not scope in scope_map:
             raise CommandError("Unknown scope %s" % scope)