]> git.phdru.name Git - xsetbg.git/blobdiff - reload_db.py
Rename db_file to xsetbg_db_path
[xsetbg.git] / reload_db.py
index 975876a53d4e515fc1733a7b4d1a5dc5e6ee29a9..1bee46e92dde9517f826152043dced4f5ff87469 100755 (executable)
@@ -5,25 +5,18 @@ This file is a part of XSetBg.
 
 """
 
-__version__ = "$Revision: 17 $"[11:-2]
-__revision__ = "$Id: print_all.py 17 2007-06-14 10:37:08Z phd $"[5:-2]
-__date__ = "$Date: 2007-06-14 14:37:08 +0400 (Thu, 14 Jun 2007) $"[7:-2]
-
 __author__ = "Oleg Broytman <phd@phdru.name>"
-__copyright__ = "Copyright (C) 2007-2010 PhiloSoft Design"
+__copyright__ = "Copyright (C) 2007-2014 PhiloSoft Design"
 __license__ = "GNU GPL"
 
-import sys, os, shelve
-
-xsetbg_dir = os.path.join(os.environ["HOME"], "lib", "xsetbg")
-os.chdir(xsetbg_dir)
+import sys, shelve
+from xsetbg_db import xsetbg_db_path
 
-global_db_name = "xsetbg.db"
 dump_file = open(sys.argv[1], 'rU')
 
-global_db = shelve.open(global_db_name, flag='n')
+xsetbg_db = shelve.open(xsetbg_db_path, flag='n')
 for line in dump_file:
    timestamp, filename = line.strip().split(None, 1)
-   global_db[filename] = float(timestamp)
-global_db.close()
+   xsetbg_db[filename] = float(timestamp)
+xsetbg_db.close()
 dump_file.close()