summaryrefslogtreecommitdiff
path: root/python/samba/tests
diff options
context:
space:
mode:
authorJoe Guo <joeg@catalyst.net.nz>2018-07-30 18:16:26 +1200
committerDouglas Bagnall <dbagnall@samba.org>2018-08-24 07:49:27 +0200
commit944d70435e4859a626b875c18535c1adb7c3e66f (patch)
tree61cfa550ff4eb79d1a563a549711fc70d3c25fd9 /python/samba/tests
parent5d532543abdcb605fd1432eeaa36135bdac8a884 (diff)
downloadsamba-944d70435e4859a626b875c18535c1adb7c3e66f.tar.gz
PEP8: fix E131: continuation line unaligned for hanging indent
Signed-off-by: Joe Guo <joeg@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Diffstat (limited to 'python/samba/tests')
-rw-r--r--python/samba/tests/netcmd.py2
-rw-r--r--python/samba/tests/samba_tool/ou.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/python/samba/tests/netcmd.py b/python/samba/tests/netcmd.py
index 3f1c6425d1a..8e2862306b2 100644
--- a/python/samba/tests/netcmd.py
+++ b/python/samba/tests/netcmd.py
@@ -86,4 +86,4 @@ class CommandTests(NetCmdTestCase):
return
self.fail(
"The following commands do not have a short description set: %r" %
- missing)
+ missing)
diff --git a/python/samba/tests/samba_tool/ou.py b/python/samba/tests/samba_tool/ou.py
index c646349ffac..82b90e467a2 100644
--- a/python/samba/tests/samba_tool/ou.py
+++ b/python/samba/tests/samba_tool/ou.py
@@ -88,7 +88,7 @@ class OUCmdTestCase(SambaToolCmdTest):
for ou in self.ous:
(result, out, err) = self.runsubcmd(
"ou", "create", "OU=%s" % ou["name"],
- "--description=%s" % ou["description"])
+ "--description=%s" % ou["description"])
self.assertCmdSuccess(result, out, err)
self.assertEquals(err, "", "There shouldn't be any error message")
@@ -115,7 +115,7 @@ class OUCmdTestCase(SambaToolCmdTest):
full_ou_dn = self.samdb.normalize_dn_in_domain("OU=%s" % ou["name"])
(result, out, err) = self.runsubcmd(
"ou", "create", str(full_ou_dn),
- "--description=%s" % ou["description"])
+ "--description=%s" % ou["description"])
self.assertCmdSuccess(result, out, err)
self.assertEquals(err, "", "There shouldn't be any error message")