From a30df984241c2d9b4acb29661d0dc60be7e85596 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Tue, 8 Dec 2009 23:27:21 -0800 Subject: [PATCH] Bad type error message tweak. --- Cython/Compiler/ModuleNode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cython/Compiler/ModuleNode.py b/Cython/Compiler/ModuleNode.py index 7469a181..8a6f9585 100644 --- a/Cython/Compiler/ModuleNode.py +++ b/Cython/Compiler/ModuleNode.py @@ -2199,7 +2199,7 @@ static PyTypeObject *__Pyx_ImportType(const char *module_name, const char *class } if (!size_ok) { PyErr_Format(PyExc_ValueError, - "%s.%s is the wrong size, try recompiling", + "%s.%s has the wrong size, try recompiling", module_name, class_name); goto bad; } -- 2.26.2