summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJoe Guo <joeg@catalyst.net.nz>2018-09-04 01:05:52 +1200
committerAndrew Bartlett <abartlet@samba.org>2018-09-06 15:50:17 +0200
commit8c2c9794ec02eeb9eeecaa6dcd9e96dca3a9ac66 (patch)
treee723083368de7ec43fc0a8e83150db7d58bf0d3f /lib
parentdeb819913d1749563ba2e0ebb53aa788fc0388ea (diff)
downloadsamba-8c2c9794ec02eeb9eeecaa6dcd9e96dca3a9ac66.tar.gz
PEP8: fix E128: continuation line under-indented for visual indent
Signed-off-by: Joe Guo <joeg@catalyst.net.nz> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Thu Sep 6 15:50:17 CEST 2018 on sn-devel-144
Diffstat (limited to 'lib')
-rwxr-xr-xlib/ldb/tests/python/api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ldb/tests/python/api.py b/lib/ldb/tests/python/api.py
index e304bb2d043..37e8f4da656 100755
--- a/lib/ldb/tests/python/api.py
+++ b/lib/ldb/tests/python/api.py
@@ -1327,7 +1327,7 @@ class SearchTests(LdbBaseTest):
try:
res11 = self.l.search(base="DC=SAMBA,DCXXXX",
- scope=ldb.SCOPE_ONELEVEL)
+ scope=ldb.SCOPE_ONELEVEL)
self.fail("Should have failed with ERR_INVALID_DN_SYNTAX")
except ldb.LdbError as err:
enum = err.args[0]