From: Joe Guo Date: Mon, 3 Sep 2018 13:05:32 +0000 (+1200) Subject: PEP8: fix E125: continuation line with same indent as next logical line X-Git-Tag: tdb-1.3.17~1728 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc02a4c35fbc92df0d8797eca4135ed22b14db29;p=thirdparty%2Fsamba.git PEP8: fix E125: continuation line with same indent as next logical line Signed-off-by: Joe Guo Reviewed-by: Douglas Bagnall Reviewed-by: Andrew Bartlett --- diff --git a/python/samba/netcmd/ldapcmp.py b/python/samba/netcmd/ldapcmp.py index 5f92745979d..a644b0a4180 100644 --- a/python/samba/netcmd/ldapcmp.py +++ b/python/samba/netcmd/ldapcmp.py @@ -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