Update of /cvsroot/sqlobject/SQLObject/SQLObject
In directory sc8-pr-cvs1:/tmp/cvs-serv3435
Modified Files:
SQLObject.py
Log Message:
Fixed spurious argument (caused error in Python 2.3)
Index: SQLObject.py
===================================================================
RCS file: /cvsroot/sqlobject/SQLObject/SQLObject/SQLObject.py,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** SQLObject.py 11 Apr 2003 16:30:39 -0000 1.19
--- SQLObject.py 16 Apr 2003 21:19:03 -0000 1.20
***************
*** 290,294 ****
if id is None:
# Create an actual new object:
! inst = object.__new__(cls, id)
inst._SO_creating = True
# This is a dictionary of column-names to
--- 290,294 ----
if id is None:
# Create an actual new object:
! inst = object.__new__(cls)
inst._SO_creating = True
# This is a dictionary of column-names to
|