mirror of
https://github.com/samba-team/samba.git
synced 2025-12-17 04:23:50 +03:00
PEP8: fix E225: missing whitespace around operator
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>
This commit is contained in:
@@ -729,7 +729,7 @@ class cmd_drs_options(Command):
|
||||
#save new options
|
||||
m = ldb.Message()
|
||||
m.dn = ldb.Dn(self.samdb, ntds_dn)
|
||||
m["options"]= ldb.MessageElement(str(dsa_opts), ldb.FLAG_MOD_REPLACE, "options")
|
||||
m["options"] = ldb.MessageElement(str(dsa_opts), ldb.FLAG_MOD_REPLACE, "options")
|
||||
self.samdb.modify(m)
|
||||
# print out new DSA options
|
||||
cur_opts = [x for x in self.option_map if self.option_map[x] & dsa_opts]
|
||||
|
||||
Reference in New Issue
Block a user