[SQL-CVS] r715 - trunk/SQLObject/sqlobject
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: <sub...@co...> - 2005-04-05 14:57:49
|
Author: phd Date: 2005-04-05 14:57:46 +0000 (Tue, 05 Apr 2005) New Revision: 715 Modified: trunk/SQLObject/sqlobject/main.py Log: Applied bugfix from the bug 1174944. Modified: trunk/SQLObject/sqlobject/main.py =================================================================== --- trunk/SQLObject/sqlobject/main.py 2005-04-05 14:50:14 UTC (rev 714) +++ trunk/SQLObject/sqlobject/main.py 2005-04-05 14:57:46 UTC (rev 715) @@ -522,7 +522,7 @@ def get(cls, id, connection=None, selectResults=None): - assert id is not None, 'None is not a possible id for %s' % cls.__name + assert id is not None, 'None is not a possible id for %s' % cls.__name__ id = cls._idType(id) |