2008-02-03 Gary Burton <gary.burton@zen.co.uk>

* src/gen/db/base.py: Functions using the pop function expect a return
	value. Bug #1632



svn: r9991
This commit is contained in:
Gary Burton 2008-02-03 21:55:03 +00:00
parent 76ddf2bda2
commit 2742e8d00b
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-02-03 Gary Burton <gary.burton@zen.co.uk>
* src/gen/db/base.py: Functions using the pop function expect a return
value. Bug #1632
2008-02-02 Raphael Ackermann <raphael.ackermann@gmail.com>
* src/ExportOptions.py: fix mnemonics for filter

View File

@ -109,7 +109,7 @@ class GrampsDbBookmarks:
self.bookmarks.remove(item)
def pop(self, item):
self.bookmarks.pop(item)
return self.bookmarks.pop(item)
def insert(self, pos, item):
self.bookmarks.insert(pos, item)