From: Billy G. A. <bal...@us...> - 2001-10-01 03:14:26
|
Update of /cvsroot/pypgsql/pypgsql In directory usw-pr-cvs1:/tmp/cvs-serv18270 Modified Files: pgresult.c Log Message: 30SEP2001 bga Fixed missing semi-colon that slipped into the repository. Index: pgresult.c =================================================================== RCS file: /cvsroot/pypgsql/pypgsql/pgresult.c,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** pgresult.c 2001/10/01 01:26:56 1.13 --- pgresult.c 2001/10/01 03:14:23 1.14 *************** *** 244,248 **** (PyInt_AS_LONG(self->ntuples) - 1)); else ! strcpy(buf, "result does not contain any tuples.") PyErr_SetString(PyExc_ValueError, buf); return FALSE; --- 244,248 ---- (PyInt_AS_LONG(self->ntuples) - 1)); else ! strcpy(buf, "result does not contain any tuples."); PyErr_SetString(PyExc_ValueError, buf); return FALSE; |