]> git.phdru.name Git - xsetbg.git/blobdiff - dump_db.py
Feat: Remove DBus-related scripts
[xsetbg.git] / dump_db.py
index 2bdffedf9972887873326bbf132c573347a40770..97972991ba3169be555bb6dd1dbfe6dd7ff505fc 100755 (executable)
@@ -5,10 +5,6 @@ This file is a part of XSetBg.
 
 """
 
-__author__ = "Oleg Broytman <phd@phdru.name>"
-__copyright__ = "Copyright (C) 2006-2015 PhiloSoft Design"
-__license__ = "GNU GPL"
-
 import sys
 from m_lib.defenc import default_encoding
 from xsetbg_db import xsetbg_db
@@ -17,4 +13,4 @@ if not xsetbg_db:
     sys.exit("Error: no database found")
 
 for row in xsetbg_db.select(orderBy='-last_shown'):
-    print row.id, row.last_shown, row.full_name.encode(default_encoding)
+    print(row.id, row.last_shown, row.full_name.encode(default_encoding))