[Zope3-checkins] CVS: Zope3/lib/python/Transaction - Transaction.py:1.2
Jeremy Hylton
jeremy@zope.com
Thu, 5 Sep 2002 15:53:01 -0400
Update of /cvs-repository/Zope3/lib/python/Transaction
In directory cvs.zope.org:/tmp/cvs-serv27507
Modified Files:
Transaction.py
Log Message:
Fix typo caught by pychecker.
=== Zope3/lib/python/Transaction/Transaction.py 1.1 => 1.2 ===
--- Zope3/lib/python/Transaction/Transaction.py:1.1 Wed Jul 24 19:02:53 2002
+++ Zope3/lib/python/Transaction/Transaction.py Thu Sep 5 15:53:00 2002
@@ -35,7 +35,7 @@
"""
assert self._manager is not None
if parent is not None:
- t = Transaction(_self.manager, self)
+ t = Transaction(self.manager, self)
return t
def commit(self):