]> git.phdru.name Git - bookmarks_db.git/blobdiff - Storage/bkmk_stpickle.py
Make most classes new-style classes
[bookmarks_db.git] / Storage / bkmk_stpickle.py
index c957bfe725a0bdead3a408567d94ab4dc77e18c2..444cf35c3395d9a851c09284d4e63fe85d90fcc6 100644 (file)
@@ -1,13 +1,11 @@
 """Bookmarks storage manager - pickle; certainly the most simple and elegant :)
 
 This file is a part of Bookmarks database and Internet robot.
+
 """
 
-__version__ = "$Revision$"[11:-2]
-__revision__ = "$Id$"[5:-2]
-__date__ = "$Date$"[7:-2]
 __author__ = "Oleg Broytman <phd@phdru.name>"
-__copyright__ = "Copyright (C) 2000-2011 PhiloSoft Design"
+__copyright__ = "Copyright (C) 2000-2014 PhiloSoft Design"
 __license__ = "GNU GPL"
 
 __all__ = ['storage_pickle']
@@ -21,7 +19,7 @@ except ImportError:
    import pickle
 
 
-class storage_pickle:
+class storage_pickle(object):
    filename = "bookmarks_db.pickle"
 
    def store(self, root_folder):