[Zodb-checkins] CVS: Packages/ZEO - ServerStub.py:1.5
Toby Dickenson
tdickenson@geminidataloggers.com
Thu, 27 Jun 2002 11:06:19 -0400
Update of /cvs-repository/Packages/ZEO
In directory cvs.zope.org:/tmp/cvs-serv17451
Modified Files:
ServerStub.py
Log Message:
merge change from ZEO2-branch; fix bug that prevented history() returning more than a single item
=== Packages/ZEO/ServerStub.py 1.4 => 1.5 ===
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)