* src/GrampsDb/_GrampsBSDDB.py (transaction_commit): Typo.
svn: r5891
This commit is contained in:
parent
ec7a5f4658
commit
8f979710ec
@ -1,3 +1,6 @@
|
||||
2006-02-06 Alex Roitman <shura@gramps-project.org>
|
||||
* src/GrampsDb/_GrampsBSDDB.py (transaction_commit): Typo.
|
||||
|
||||
2006-02-05 Don Allingham <don@gramps-project.org>
|
||||
* src/AttrEdit.py: remove unused parameters
|
||||
* src/EditFamily.py: start apply operation, data saving
|
||||
|
@ -1002,7 +1002,7 @@ class GrampsBSDDB(GrampsDbBase):
|
||||
for (key,data) in transaction.reference_add:
|
||||
self.reference_map.put(str(key),data,txn=self.txn)
|
||||
|
||||
for (key,data) in transaction.reference_del:
|
||||
for key in transaction.reference_del:
|
||||
self.reference_map.delete(str(key),txn=self.txn)
|
||||
|
||||
# Commit BSD DB transaction -- DBTxn
|
||||
|
Loading…
Reference in New Issue
Block a user