[Modeling-cvs] ProjectModeling/Modeling CHANGES,1.140,1.141 SQLExpression.py,1.19,1.20
Status: Abandoned
Brought to you by:
sbigaret
From: <sbi...@us...> - 2003-08-02 09:40:52
|
Update of /cvsroot/modeling/ProjectModeling/Modeling In directory sc8-pr-cvs1:/tmp/cvs-serv19706 Modified Files: CHANGES SQLExpression.py Log Message: Fixed bug #779775, on behalf of Yannick Gingras who reported the bug and gave the patch fixing it. Index: CHANGES =================================================================== RCS file: /cvsroot/modeling/ProjectModeling/Modeling/CHANGES,v retrieving revision 1.140 retrieving revision 1.141 diff -C2 -d -r1.140 -r1.141 *** CHANGES 2 Aug 2003 08:07:16 -0000 1.140 --- CHANGES 2 Aug 2003 09:40:49 -0000 1.141 *************** *** 8,11 **** --- 8,14 ---- -------------------------------------------------------- + * Fixed bug #779775, on behalf of Yannick Gingras who reported the bug and + gave the patch fixing it. + * Fixed bug #781884: SQLiteAdaptorLayer: dropping and creating a database was not possible (and was failing w/ an ugly traceback) Index: SQLExpression.py =================================================================== RCS file: /cvsroot/modeling/ProjectModeling/Modeling/SQLExpression.py,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** SQLExpression.py 24 Jul 2003 12:07:25 -0000 1.19 --- SQLExpression.py 2 Aug 2003 09:40:49 -0000 1.20 *************** *** 1233,1237 **** return '(%s)'%aList[0] else: ! return str(tuple(aList)) def sqlStringForNegatedQualifier(self, aQualifier): --- 1233,1237 ---- return '(%s)'%aList[0] else: ! return "(%s)" % ", ".join(map(str, aList)) def sqlStringForNegatedQualifier(self, aQualifier): |