* src/GrampsDbBase.py (transaction_commit): Typo.
svn: r5574
This commit is contained in:
@@ -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>
|
2005-12-16 Don Allingham <don@gramps-project.org>
|
||||||
* src/gramps-manual/C/usuage.xml: updates
|
* src/gramps-manual/C/usuage.xml: updates
|
||||||
* src/gramps-manual/C/mainwin.xml: updates
|
* src/gramps-manual/C/mainwin.xml: updates
|
||||||
|
@@ -1001,7 +1001,7 @@ class GrampsDbBase(GrampsDBCallback.GrampsDBCallback):
|
|||||||
transaction.set_description(msg)
|
transaction.set_description(msg)
|
||||||
self.undoindex += 1
|
self.undoindex += 1
|
||||||
if self.undoindex == _UNDO_SIZE:
|
if self.undoindex == _UNDO_SIZE:
|
||||||
self.translist = transaction[0:-1] + [ transaction ]
|
self.translist = self.translist[0:-1] + [ transaction ]
|
||||||
else:
|
else:
|
||||||
self.translist[self.undoindex] = transaction
|
self.translist[self.undoindex] = transaction
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user