From 204d7861df5bdc1abe15ed83234ca5afce528bcb Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Sat, 5 Jun 2004 19:29:41 +0000 Subject: [PATCH] Fix exception wording --- Objects/intobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/intobject.c b/Objects/intobject.c index 18624b31ef1..b7ac16b6c38 100644 --- a/Objects/intobject.c +++ b/Objects/intobject.c @@ -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; }