]> git.phdru.name Git - xsetbg.git/blobdiff - xsetbg_db.py
Feat: Python 3
[xsetbg.git] / xsetbg_db.py
index dfa65fce7f307daaaac90c88daadb1143be63674..85cecc289f2b440df531adc1ee86e227ef9bac7f 100755 (executable)
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#! /usr/bin/env python3
 """XSetBg database
 
 """
@@ -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):
@@ -88,5 +88,5 @@ else:
     xsetbg_db = None
 
 if __name__ == '__main__':
-    print "DB dirs:", db_dirs
-    print "DB file:", xsetbg_db_path
+    print("DB dirs:", db_dirs)
+    print("DB file:", xsetbg_db_path)