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:
parent
76ddf2bda2
commit
2742e8d00b
@ -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>
|
2008-02-02 Raphael Ackermann <raphael.ackermann@gmail.com>
|
||||||
* src/ExportOptions.py: fix mnemonics for filter
|
* src/ExportOptions.py: fix mnemonics for filter
|
||||||
|
|
||||||
|
@ -109,7 +109,7 @@ class GrampsDbBookmarks:
|
|||||||
self.bookmarks.remove(item)
|
self.bookmarks.remove(item)
|
||||||
|
|
||||||
def pop(self, item):
|
def pop(self, item):
|
||||||
self.bookmarks.pop(item)
|
return self.bookmarks.pop(item)
|
||||||
|
|
||||||
def insert(self, pos, item):
|
def insert(self, pos, item):
|
||||||
self.bookmarks.insert(pos, item)
|
self.bookmarks.insert(pos, item)
|
||||||
|
Loading…
Reference in New Issue
Block a user