]> git.phdru.name Git - xsetbg.git/commitdiff
Style: Fix `flake8` error E999 SyntaxError: leading zeros in decimal integer
authorOleg Broytman <phd@phdru.name>
Sat, 24 Feb 2024 13:54:34 +0000 (16:54 +0300)
committerOleg Broytman <phd@phdru.name>
Sat, 24 Feb 2024 14:01:31 +0000 (17:01 +0300)
xsetbg_db.py

index e64440ae7b045730e6adee16031b675455cdd1eb..0ad9d048625dce5f00eea0ab0b2f67d56f5cc6b3 100755 (executable)
@@ -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):