This commit is contained in:
Skip Montanaro 2003-04-11 23:10:13 +00:00
parent dfa35fa3b6
commit 98f16e0074

View file

@ -1096,7 +1096,7 @@ csv_writerows(WriterObj *self, PyObject *seqseq)
row_iter = PyObject_GetIter(seqseq);
if (row_iter == NULL) {
PyErr_SetString(PyExc_TypeError,
"writerows() argument must be iteratable");
"writerows() argument must be iterable");
return NULL;
}
while ((row_obj = PyIter_Next(row_iter))) {