X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=bkmk_objects.py;h=88abdf5f9e6dd76a08e246a3b48eec83b09de374;hb=5291c9e91503d288a4a50a30345d1d33ced56f32;hp=fabf0ed5be81b6601ef3801e66d0fb026ccb09df;hpb=bcf579e3311f0d9f968338dc419e9a43b48414ba;p=bookmarks_db.git diff --git a/bkmk_objects.py b/bkmk_objects.py index fabf0ed..88abdf5 100644 --- a/bkmk_objects.py +++ b/bkmk_objects.py @@ -11,7 +11,7 @@ class Folder(UserList): isFolder = 1 isBookmark = 0 - def __init__(self, add_date = None, comment = '', last_modified=None): + def __init__(self, add_date=None, comment='', last_modified=None): UserList.__init__(self) self.comment = comment self.add_date = add_date @@ -43,13 +43,15 @@ class Bookmark: isBookmark = 1 def __init__(self, href, add_date, last_visit=None, last_modified=None, - keyword=None, comment = ''): - self.comment = comment + keyword=None, comment='', icon=None, charset=None): self.href = href self.add_date = add_date self.last_visit = last_visit self.last_modified = last_modified self.keyword = keyword + self.comment = comment + self.icon = icon + self.charset = charset class Ruler: