From: Douglas Bagnall Date: Tue, 21 Aug 2018 21:34:05 +0000 (+1200) Subject: PEP8: more space before equals X-Git-Tag: tdb-1.3.17~2042 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c750ad7caa99a028b10c81ac709918f1028f40b;p=thirdparty%2Fsamba.git PEP8: more space before equals This dropped out during rebase Signed-off-by: Douglas Bagnall Reviewed-by: Andrew Bartlett --- diff --git a/python/samba/netcmd/dsacl.py b/python/samba/netcmd/dsacl.py index 81dfba613ca..3295db3b76a 100644 --- a/python/samba/netcmd/dsacl.py +++ b/python/samba/netcmd/dsacl.py @@ -92,7 +92,7 @@ class cmd_dsacl_set(Command): assert(isinstance(desc, security.descriptor)) m = ldb.Message() m.dn = ldb.Dn(samdb, object_dn) - m["nTSecurityDescriptor"]= ldb.MessageElement( + m["nTSecurityDescriptor"] = ldb.MessageElement( (ndr_pack(desc)), ldb.FLAG_MOD_REPLACE, "nTSecurityDescriptor") samdb.modify(m)