* src/GrampsDbBase.py (transaction_commit): Typo.

svn: r5574
This commit is contained in:
Alex Roitman
2005-12-17 21:37:33 +00:00
parent a5e9312678
commit d6c4ffe649
2 changed files with 4 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
2005-12-17 Alex Roitman <shura@gramps-project.org>
* src/GrampsDbBase.py (transaction_commit): Typo.
2005-12-16 Don Allingham <don@gramps-project.org>
* src/gramps-manual/C/usuage.xml: updates
* src/gramps-manual/C/mainwin.xml: updates

View File

@@ -1001,7 +1001,7 @@ class GrampsDbBase(GrampsDBCallback.GrampsDBCallback):
transaction.set_description(msg)
self.undoindex += 1
if self.undoindex == _UNDO_SIZE:
self.translist = transaction[0:-1] + [ transaction ]
self.translist = self.translist[0:-1] + [ transaction ]
else:
self.translist[self.undoindex] = transaction