Commit 5b810fa0 authored by Jim Fulton's avatar Jim Fulton

I'd forgotten about removing the version argument in MVCCAdapterInstance

Which led to me to call site that needed it to be removed.
parent 60fe92fe
......@@ -48,7 +48,7 @@ class ExportImport:
continue
done_oids[oid] = True
try:
p, serial = load(oid, '')
p, serial = load(oid)
except:
logger.debug("broken reference for oid %s", repr(oid),
exc_info=True)
......
......@@ -139,7 +139,7 @@ class MVCCAdapterInstance(Base):
self._invalidations.clear()
return result
def load(self, oid, version=''):
def load(self, oid):
assert self._start is not None
r = self._storage.loadBefore(oid, self._start)
if r is None:
......
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