From fff3f949d93929b6e58b8fd431555adff7d5680f Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Sat, 5 Jun 2004 19:30:29 +0000 Subject: 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 8a27bfe..e530ecb 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); -- cgit v0.12