[SQL-CVS] SQLObject/SQLObject SQLObject.py,1.62,1.63
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
|
From: <dre...@us...> - 2003-11-03 13:20:33
|
Update of /cvsroot/sqlobject/SQLObject/SQLObject
In directory sc8-pr-cvs1:/tmp/cvs-serv31802
Modified Files:
SQLObject.py
Log Message:
Oops. Ian made the wrong change here. Fixing.
Index: SQLObject.py
===================================================================
RCS file: /cvsroot/sqlobject/SQLObject/SQLObject/SQLObject.py,v
retrieving revision 1.62
retrieving revision 1.63
diff -C2 -d -r1.62 -r1.63
*** SQLObject.py 1 Nov 2003 19:53:07 -0000 1.62
--- SQLObject.py 3 Nov 2003 13:20:29 -0000 1.63
***************
*** 1026,1030 ****
' '.join(['%s=%s' % (name, repr(value)) for name, value in self._reprItems()]))
! def sqlrepr(self, cls):
return cls._connection.sqlrepr(value)
--- 1026,1030 ----
' '.join(['%s=%s' % (name, repr(value)) for name, value in self._reprItems()]))
! def sqlrepr(cls, value):
return cls._connection.sqlrepr(value)
|