From ba87e23b3842d03dbc1e1cb16f293a3f3eb2bee4 Mon Sep 17 00:00:00 2001 From: Douglas Bagnall Date: Wed, 29 Aug 2018 13:30:59 +1200 Subject: [PATCH] gpo PEP8: balance whitespace around equals Signed-off-by: Douglas Bagnall Reviewed-by: David Mulder Reviewed-by: Aurelien Aptel --- python/samba/gpclass.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()