diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2014-06-02 01:33:43 +0200 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2014-10-14 06:44:06 +0200 |
commit | bbaa739bbda4685fa5e38ea0d939496398e11ebf (patch) | |
tree | 98667c3fdf178377e86a371014e2fc23cce354cb /source4/scripting/bin | |
parent | bcf298e7eca07a8869d184ad44c01232a11ba9ea (diff) | |
download | samba-bbaa739bbda4685fa5e38ea0d939496398e11ebf.tar.gz samba-bbaa739bbda4685fa5e38ea0d939496398e11ebf.tar.xz samba-bbaa739bbda4685fa5e38ea0d939496398e11ebf.zip |
Remove remaining instance of pep8 E211 (too many spaces before operator).
Signed-Off-By: Jelmer Vernooij <jelmer@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Change-Id: I9af3bf582bba8fc1094addb12cd0a5ce04406b5b
Diffstat (limited to 'source4/scripting/bin')
-rwxr-xr-x | source4/scripting/bin/samba_kcc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/scripting/bin/samba_kcc b/source4/scripting/bin/samba_kcc index 617cad26cb..9d26848d2d 100755 --- a/source4/scripting/bin/samba_kcc +++ b/source4/scripting/bin/samba_kcc @@ -655,8 +655,8 @@ class KCC(object): res = self.samdb.search(base=pdnstr, scope=ldb.SCOPE_BASE, attrs=attrs) except ldb.ldbError, (enum, estr): - raise Exception \ - ("Unable to find attr (%s) for (%s) - (%s)" % + raise Exception( + "Unable to find attr (%s) for (%s) - (%s)" % (x_transport.address_attr, pdnstr, estr)) msg = res[0] |