Commit 6dcda4e6 authored by Julien Muchembled's avatar Julien Muchembled

importer: fix NameError when recovering during tpc_finish

parent dc220d04
......@@ -616,7 +616,7 @@ class ImporterDatabaseManager(DatabaseManager):
return self.db.getTransaction(tid, all)
def getFinalTID(self, ttid):
if u64(ttid) <= self.zodb_ltid and self._import:
if util.u64(ttid) <= self.zodb_ltid and self._import:
raise NotImplementedError
return self.db.getFinalTID(ttid)
......
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