Commit e8a96ddd authored by Toby Dickenson's avatar Toby Dickenson

merge change from ZEO2-branch; fix bug that prevented history() returning more than a single item

parent c0a713b0
......@@ -73,7 +73,7 @@ class StorageServer:
return self.rpc.call('commitVersion', src, dest, id)
def history(self, oid, version, length=None):
if length is not None:
if length is None:
return self.rpc.call('history', oid, version)
else:
return self.rpc.call('history', oid, version, length)
......
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