[Zope3-checkins] CVS: ZODB4/Transaction - Transaction.py:1.6
Jeremy Hylton
jeremy@zope.com
Fri, 13 Dec 2002 12:09:59 -0500
Update of /cvs-repository/ZODB4/Transaction
In directory cvs.zope.org:/tmp/cvs-serv13850
Modified Files:
Transaction.py
Log Message:
Typo in attribute name (also caught by pychecker)
=== ZODB4/Transaction/Transaction.py 1.5 => 1.6 ===
--- ZODB4/Transaction/Transaction.py:1.5 Fri Dec 13 12:08:56 2002
+++ ZODB4/Transaction/Transaction.py Fri Dec 13 12:09:58 2002
@@ -41,7 +41,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):