[Zodb-checkins] CVS: ZODB3/ZEO - ClientStorage.py:1.73.2.7.2.12
Guido van Rossum
guido@python.org
Wed, 18 Dec 2002 22:50:14 -0500
Update of /cvs-repository/ZODB3/ZEO
In directory cvs.zope.org:/tmp/cvs-serv25824
Modified Files:
Tag: ZODB3-fast-restart-branch
ClientStorage.py
Log Message:
Ouch. The backwards compatibility code contained a typo. Now it works.
=== ZODB3/ZEO/ClientStorage.py 1.73.2.7.2.11 => 1.73.2.7.2.12 ===
--- ZODB3/ZEO/ClientStorage.py:1.73.2.7.2.11 Wed Dec 18 22:37:08 2002
+++ ZODB3/ZEO/ClientStorage.py Wed Dec 18 22:50:13 2002
@@ -850,7 +850,7 @@
# The following are for compatibility with protocol version 2.0.0
def invalidateTrans(self, args):
- return invalidateTransaction(None, args)
+ return self.invalidateTransaction(None, args)
invalidate = invalidateVerify
end = endVerify