* src/GrampsDb/_GrampsDbBase.py: add append_list task

* src/GrampsDb/_ReadGrdb.py: copy bookmarks properly on import


svn: r7936
This commit is contained in:
Don Allingham
2007-01-20 05:06:49 +00:00
parent 1b9e4e8f50
commit c2b4c7cdbb
3 changed files with 12 additions and 7 deletions

View File

@@ -167,6 +167,9 @@ class GrampsDbBookmarks:
def append(self, item):
self.bookmarks.append(item)
def append_list(self, blist):
self.bookmarks += blist
def remove(self, item):
self.bookmarks.remove(item)