PEP8: more space before equals
authorDouglas Bagnall <douglas.bagnall@catalyst.net.nz>
Tue, 21 Aug 2018 21:34:05 +0000 (09:34 +1200)
committerDouglas Bagnall <dbagnall@samba.org>
Fri, 24 Aug 2018 05:49:31 +0000 (07:49 +0200)
This dropped out during rebase

Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
python/samba/netcmd/dsacl.py

index 81dfba613ca0d8fc29893eb584921319ae278ebe..3295db3b76aeb179f150874670f9dd410e0cd5ce 100644 (file)
@@ -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)