delegation.py: Remove tab characters.
authorJelmer Vernooij <jelmer@samba.org>
Mon, 12 Sep 2011 22:19:45 +0000 (00:19 +0200)
committerJelmer Vernooij <jelmer@samba.org>
Tue, 13 Sep 2011 00:24:03 +0000 (02:24 +0200)
source4/scripting/python/samba/netcmd/delegation.py

index cf04d9d5775f4e077551f2fc4362ad3d506bb8d1..c29c798be4300d2457cdc566f33536afe3a9138b 100644 (file)
@@ -107,7 +107,7 @@ class cmd_delegation_for_any_service(Command):
         # to the correct domain
         (cleanedaccount, realm, domain) = _get_user_realm_domain(accountname)
 
-       search_filter = "sAMAccountName=%s" % ldb.binary_encode(cleanedaccount)
+        search_filter = "sAMAccountName=%s" % ldb.binary_encode(cleanedaccount)
         flag = dsdb.UF_TRUSTED_FOR_DELEGATION
         try:
             sam.toggle_userAccountFlags(search_filter, flag, on=on, strict=True)
@@ -142,7 +142,7 @@ class cmd_delegation_for_any_protocol(Command):
         # to the correct domain
         (cleanedaccount, realm, domain) = _get_user_realm_domain(accountname)
 
-       search_filter = "sAMAccountName=%s" % ldb.binary_encode(cleanedaccount)
+        search_filter = "sAMAccountName=%s" % ldb.binary_encode(cleanedaccount)
         flag = dsdb.UF_TRUSTED_TO_AUTHENTICATE_FOR_DELEGATION
         try:
             sam.toggle_userAccountFlags(search_filter, flag, on=on, strict=True)