[Zope-CVS] CVS: Products/Ape/lib/apelib/zodb3 - connection.py:1.10
Shane Hathaway
shane at zope.com
Thu Mar 11 00:46:43 EST 2004
Update of /cvs-repository/Products/Ape/lib/apelib/zodb3
In directory cvs.zope.org:/tmp/cvs-serv13344
Modified Files:
connection.py
Log Message:
Renamed variables named msg or message to something else. I am considering renaming events to messages.
=== Products/Ape/lib/apelib/zodb3/connection.py 1.9 => 1.10 ===
--- Products/Ape/lib/apelib/zodb3/connection.py:1.9 Sat Feb 28 15:06:28 2004
+++ Products/Ape/lib/apelib/zodb3/connection.py Thu Mar 11 00:46:42 2004
@@ -311,10 +311,10 @@
oid=obj._p_oid
if self._storage is None:
- msg = ("Shouldn't load state for %s "
+ text = ("Shouldn't load state for %s "
"when the connection is closed" % `oid`)
- LOG('ZODB', ERROR, msg)
- raise RuntimeError(msg)
+ LOG('ZODB', ERROR, text)
+ raise RuntimeError(text)
try:
p, serial = self._storage.load(oid, self._version)
More information about the Zope-CVS
mailing list