Commit 0cc48af9 authored by Grégory Wisniewski's avatar Grégory Wisniewski

Fix a mistake.


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@1176 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 275ae0a5
......@@ -939,10 +939,10 @@ class Application(object):
return undo_info
def undoLog(self, first, last, filter=None, block=0):
return self.__undoLog(self, first, last, filter, block)
return self.__undoLog(first, last, filter, block)
def transactionLog(self, first, last):
return self.__undoLog(self, first, last, with_oids=True)
return self.__undoLog(first, last, with_oids=True)
def history(self, oid, version=None, length=1, filter=None, object_only=0):
# Get history informations for object first
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment