From: Douglas Bagnall Date: Wed, 29 Aug 2018 01:30:59 +0000 (+1200) Subject: gpo PEP8: balance whitespace around equals X-Git-Tag: tdb-1.3.17~1403 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ba87e23b3842d03dbc1e1cb16f293a3f3eb2bee4;p=thirdparty%2Fsamba.git gpo PEP8: balance whitespace around equals Signed-off-by: Douglas Bagnall Reviewed-by: David Mulder Reviewed-by: Aurelien Aptel --- diff --git a/python/samba/gpclass.py b/python/samba/gpclass.py index c3941cf703a..b7c53ebb522 100644 --- a/python/samba/gpclass.py +++ b/python/samba/gpclass.py @@ -251,7 +251,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()