From: Oleg Broytman Date: Sat, 24 Feb 2024 13:54:34 +0000 (+0300) Subject: Style: Fix `flake8` error E999 SyntaxError: leading zeros in decimal integer X-Git-Tag: 5.1.0~7 X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;h=3c346158f50cfb7e7995cc0176af52d88308529f;hp=5bf30e4e42543b6be01448937183f3470cc731f3;p=xsetbg.git Style: Fix `flake8` error E999 SyntaxError: leading zeros in decimal integer --- diff --git a/xsetbg_db.py b/xsetbg_db.py index e64440a..0ad9d04 100755 --- a/xsetbg_db.py +++ b/xsetbg_db.py @@ -11,7 +11,7 @@ from xsetbg_conf import xsetbg_conf __all__ = ['xsetbg_db_path', 'xsetbg_db'] # octal; -rw-------; make the database file(s) readable only by the user -os.umask(0066) +os.umask(0o066) class XSetBg(SQLObject):