diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-11-07 09:53:06 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-11-07 10:02:45 +1100 |
commit | eb9c35cbb77fa16f8301428ce163359008d1687f (patch) | |
tree | 33ac4797b615e496212b64c6971d6857a1530b5a /source4/scripting/bin | |
parent | d85b6edf8cdfd953ce96a50466595384db4c698b (diff) | |
download | samba-eb9c35cbb77fa16f8301428ce163359008d1687f.tar.gz |
kcc: fixed tabs/spaces in kcc python implementation
as spotted by autobuild
Diffstat (limited to 'source4/scripting/bin')
-rwxr-xr-x | source4/scripting/bin/samba_kcc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source4/scripting/bin/samba_kcc b/source4/scripting/bin/samba_kcc index 10c51d3f003..be6c925b95a 100755 --- a/source4/scripting/bin/samba_kcc +++ b/source4/scripting/bin/samba_kcc @@ -38,10 +38,10 @@ import samba, ldb import optparse import logging -from samba import getopt as options -from samba.auth import system_session -from samba.samdb import SamDB -from samba.kcc_utils import * +from samba import getopt as options +from samba.auth import system_session +from samba.samdb import SamDB +from samba.kcc_utils import * class KCC: """The Knowledge Consistency Checker class. A container for @@ -81,7 +81,7 @@ class KCC: into the dsa_table by dn string Raises an Exception on error. """ - dn = ldb.Dn(self.samdb, "") + dn = ldb.Dn(self.samdb, "") try: res = samdb.search(base=dn, scope=ldb.SCOPE_BASE, attrs=["dsServiceName"]) |