From: Andrew M. Kuchling Date: Sat, 5 Jun 2004 19:30:29 +0000 (+0000) Subject: Fix exception wording X-Git-Tag: v2.3.5c1~217 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fff3f949d93929b6e58b8fd431555adff7d5680f;p=thirdparty%2FPython%2Fcpython.git Fix exception wording --- diff --git a/Objects/intobject.c b/Objects/intobject.c index 8a27bfe4d597..e530ecb645ee 100644 --- a/Objects/intobject.c +++ b/Objects/intobject.c @@ -946,7 +946,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"); return NULL; } ival = PyLong_AsLong(tmp);