]> git.phdru.name Git - bookmarks_db.git/commitdiff
Replaced UserList by list.
authorOleg Broytman <phd@phdru.name>
Sun, 30 Sep 2007 19:40:16 +0000 (19:40 +0000)
committerOleg Broytman <phd@phdru.name>
Sun, 30 Sep 2007 19:40:16 +0000 (19:40 +0000)
git-svn-id: file:///home/phd/archive/SVN/bookmarks_db/trunk@75 fdd5c36f-1aea-0310-aeeb-c58d7e2b6c23

bkmk_objects.py

index 88abdf5f9e6dd76a08e246a3b48eec83b09de374..584b87f56af1d01188ab7d0c6557c373e820ea48 100644 (file)
@@ -1,18 +1,16 @@
 """
    Objects to represent bookmarks.html structure
 
-   Written by BroytMann, Mar 2000 - Sep 2007. Copyright (C) 2000-2007 PhiloSoft Design
+   Written by Oleg BroytMann. Copyright (C) 2000-2007 PhiloSoft Design.
 """
 
 
-from UserList import UserList
-
-class Folder(UserList):
+class Folder(list):
    isFolder = 1
    isBookmark = 0
 
    def __init__(self, add_date=None, comment='', last_modified=None):
-      UserList.__init__(self)
+      super(Folder, self).__init__()
       self.comment = comment
       self.add_date = add_date
       self.last_modified = last_modified
@@ -27,7 +25,7 @@ class Folder(UserList):
             walker.start_folder(self, level)
 
       if not prune:
-         for object in self.data:
+         for object in self:
             if object.isFolder:
                object.walk_depth(walker, level+1)
             elif object.isBookmark: