summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorJoe Guo <joeg@catalyst.net.nz>2018-09-04 01:05:26 +1200
committerAndrew Bartlett <abartlet@samba.org>2018-09-06 12:10:11 +0200
commit24fe85041f053dd6f835a3a99afa7169a8cc0654 (patch)
tree38f772d5acc4cf2c86e4a3917f7943e102220c73 /source4
parent0f67b6e4b90d54fb75e078972baf392fca643056 (diff)
downloadsamba-24fe85041f053dd6f835a3a99afa7169a8cc0654.tar.gz
PEP8: fix E122: continuation line missing indentation or outdented
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>
Diffstat (limited to 'source4')
-rwxr-xr-xsource4/dsdb/tests/python/acl.py2
-rwxr-xr-xsource4/scripting/devel/repl_cleartext_pwd.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/source4/dsdb/tests/python/acl.py b/source4/dsdb/tests/python/acl.py
index 48bdd2aece2..0ab38846566 100755
--- a/source4/dsdb/tests/python/acl.py
+++ b/source4/dsdb/tests/python/acl.py
@@ -169,7 +169,7 @@ class AclAddTests(AclTests):
def assert_top_ou_deleted(self):
res = self.ldb_admin.search(self.base_dn,
expression="(distinguishedName=%s,%s)" % (
- "OU=test_add_ou1", self.base_dn))
+ "OU=test_add_ou1", self.base_dn))
self.assertEqual(len(res), 0)
def test_add_u1(self):
diff --git a/source4/scripting/devel/repl_cleartext_pwd.py b/source4/scripting/devel/repl_cleartext_pwd.py
index fc90589269e..630a2f524b7 100755
--- a/source4/scripting/devel/repl_cleartext_pwd.py
+++ b/source4/scripting/devel/repl_cleartext_pwd.py
@@ -137,7 +137,7 @@ if __name__ == "__main__":
store_dn_len, store_dn_ofs,
store_hwm_len, store_hwm_ofs,
store_utdv_len, store_utdv_ofs) = \
- struct.unpack("<LLLLLLL", store_hdr)
+ struct.unpack("<LLLLLLL", store_hdr)
store_dn = store_blob[store_dn_ofs:store_dn_ofs + store_dn_len]
store_hwm_blob = store_blob[store_hwm_ofs:store_hwm_ofs + store_hwm_len]
@@ -399,7 +399,7 @@ if __name__ == "__main__":
len(dn), dn_ofs,
len(store_hwm_blob), hwm_ofs,
len(store_utdv_blob), utdv_ofs) + \
- dn + store_hwm_blob + store_utdv_blob
+ dn + store_hwm_blob + store_utdv_blob
tmp_file = "%s.tmp" % cookie_file
f = open(tmp_file, 'wb')