Commit d129ae01 authored by Chris McDonough's avatar Chris McDonough

The caller can't deal with using current data from loadBefore, so having an...

The caller can't deal with using current data from loadBefore, so having an "end_tid" of None is useless.
parent 8659d057
......@@ -153,7 +153,7 @@ class TemporaryStorage(BaseStorage, ConflictResolvingStorage):
start_tid = tids[i]
j = i + 1
if j == len(tids):
end_tid = None
return None # the caller can't deal with current data
else:
end_tid = tids[j]
data = self.loadSerial(oid, start_tid)
......
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