From 3c346158f50cfb7e7995cc0176af52d88308529f Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sat, 24 Feb 2024 16:54:34 +0300 Subject: [PATCH] Style: Fix `flake8` error E999 SyntaxError: leading zeros in decimal integer --- xsetbg_db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- 2.39.2