Commit a324452e authored by Aurel's avatar Aurel

fix handler


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@141 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 898edfb0
......@@ -158,7 +158,7 @@ class NEOStorage(BaseStorage.BaseStorage,
self._txn_lock_acquire()
try:
try:
r = self.app.process_method('undo',
r = self.app.process_method('undo',
transaction_id = transaction_id,
txn = txn, wrapper = self)
return r
......@@ -170,7 +170,7 @@ class NEOStorage(BaseStorage.BaseStorage,
def undoLog(self, first, last, filter):
if self._is_read_only:
raise POSException.ReadOnlyError()
r = self.undoLog(first, last, filter)
r = self.app.undoLog(first, last, filter)
return r
def supportsUndo(self):
......
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