Commit 185787ff authored by Yoshinori Okuji's avatar Yoshinori Okuji

Fix a syntax error.

git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@77 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent bd203ff0
......@@ -596,7 +596,7 @@ class Application(ThreadingMixIn, object):
self.store(oid, self.tid, data, None, txn)
except NEOStorageConflictError, serial:
if serial <= self.tid:
new_data = wrapper.tryToResolveConflict(oid, self.tid, serial
new_data = wrapper.tryToResolveConflict(oid, self.tid, serial,
data)
if new_data is not None:
self.store(oid, self.tid, new_data, None, txn)
......
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