Fix exception wording

This commit is contained in:
Andrew M. Kuchling 2004-06-05 19:29:41 +00:00
parent e1ca355425
commit 204d7861df
1 changed files with 1 additions and 1 deletions

View File

@ -928,7 +928,7 @@ int_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
if (!PyInt_Check(tmp)) {
if (!PyLong_Check(tmp)) {
PyErr_SetString(PyExc_ValueError,
"value must convertable to an int");
"value must be convertable to an int");
Py_DECREF(tmp);
return NULL;
}