Commit 1f2c15e5 authored by Jim Fulton's avatar Jim Fulton

Bug fix for ZODB 3.

parent 13a53d25
...@@ -127,7 +127,7 @@ class PersistentUtil: ...@@ -127,7 +127,7 @@ class PersistentUtil:
if jar is None or oid is None: return None if jar is None or oid is None: return None
try: mv=jar.db().modifiedInVersion try: mv=jar.db().modifiedInVersion
except: pass except: pass
else: return mv()==jar.getVersion() else: return mv(oid)==jar.getVersion()
# BoboPOS 2 code: # BoboPOS 2 code:
jar=self._p_jar jar=self._p_jar
......
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