Bad type error message tweak.
authorRobert Bradshaw <robertwb@math.washington.edu>
Wed, 9 Dec 2009 07:27:21 +0000 (23:27 -0800)
committerRobert Bradshaw <robertwb@math.washington.edu>
Wed, 9 Dec 2009 07:27:21 +0000 (23:27 -0800)
Cython/Compiler/ModuleNode.py

index 7469a1812ce9107d4546a3958a381412e985a285..8a6f95856cc21d1bd6d3b7932e3afcb94d50498e 100644 (file)
@@ -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;
     }