[Zodb-checkins] CVS: Zope/lib/python/ZODB - Transaction.py:1.54
Jens Vagelpohl
jens at zope.com
Sun Oct 5 10:25:12 EDT 2003
Update of /cvs-repository/Zope/lib/python/ZODB
In directory cvs.zope.org:/tmp/cvs-serv25742
Modified Files:
Transaction.py
Log Message:
- fix typo noted by Jeff Kowalczyk
=== Zope/lib/python/ZODB/Transaction.py 1.53 => 1.54 ===
--- Zope/lib/python/ZODB/Transaction.py:1.53 Thu Oct 2 18:48:07 2003
+++ Zope/lib/python/ZODB/Transaction.py Sun Oct 5 10:25:11 2003
@@ -426,7 +426,7 @@
def note(self, text):
if self.description:
- self.description = "%s\n\n%s" % (self.description, test.strip())
+ self.description = "%s\n\n%s" % (self.description, text.strip())
else:
self.description = text.strip()
More information about the Zodb-checkins
mailing list