PEP8: fix E125: continuation line with same indent as next logical line
authorJoe Guo <joeg@catalyst.net.nz>
Mon, 3 Sep 2018 13:05:32 +0000 (01:05 +1200)
committerAndrew Bartlett <abartlet@samba.org>
Thu, 6 Sep 2018 10:10:12 +0000 (12:10 +0200)
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>
python/samba/netcmd/ldapcmp.py

index 5f92745979dac7c84ee203be48e8db842c72fa5f..a644b0a418028868375a4bb92f30d6fd65d2eb93 100644 (file)
@@ -581,7 +581,7 @@ class LDAPObject(object):
             title = 4 * " " + "Attributes found only in %s:" % self.con.host
             for x in self.attributes.keys():
                 if x not in other.attributes.keys() and \
-                    not x.upper() in [q.upper() for q in other.ignore_attributes]:
+                        not x.upper() in [q.upper() for q in other.ignore_attributes]:
                     if title:
                         res += title + "\n"
                         title = None
@@ -591,7 +591,7 @@ class LDAPObject(object):
             title = 4 * " " + "Attributes found only in %s:" % other.con.host
             for x in other.attributes.keys():
                 if x not in self.attributes.keys() and \
-                    not x.upper() in [q.upper() for q in self.ignore_attributes]:
+                        not x.upper() in [q.upper() for q in self.ignore_attributes]:
                     if title:
                         res += title + "\n"
                         title = None