mirror of
https://github.com/samba-team/samba.git
synced 2025-07-28 11:42:03 +03:00
PEP8: fix E227: missing whitespace around bitwise or shift 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:
@ -260,7 +260,7 @@ class GPOStorage:
|
||||
if os.path.isfile(log_file):
|
||||
self.log = tdb.open(log_file)
|
||||
else:
|
||||
self.log = tdb.Tdb(log_file, 0, tdb.DEFAULT, os.O_CREAT|os.O_RDWR)
|
||||
self.log = tdb.Tdb(log_file, 0, tdb.DEFAULT, os.O_CREAT |os.O_RDWR)
|
||||
|
||||
def start(self):
|
||||
self.log.transaction_start()
|
||||
|
Reference in New Issue
Block a user