[SQL-CVS] r773 - trunk/SQLObject/sqlobject
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: <sub...@co...> - 2005-05-06 16:15:24
|
Author: ianb Date: 2005-05-06 16:14:45 +0000 (Fri, 06 May 2005) New Revision: 773 Modified: trunk/SQLObject/sqlobject/sresults.py Log: doh, typo Modified: trunk/SQLObject/sqlobject/sresults.py =================================================================== --- trunk/SQLObject/sqlobject/sresults.py 2005-05-06 16:11:25 UTC (rev 772) +++ trunk/SQLObject/sqlobject/sresults.py 2005-05-06 16:14:45 UTC (rev 773) @@ -141,7 +141,7 @@ def __iter__(self): if self.ops.get('connection'): - conn = self.opts.get('connection') + conn = self.ops.get('connection') else: conn = self.sourceClass._connection return conn.iterSelect(self) |