fix error message
authorStefan Behnel <scoder@users.berlios.de>
Thu, 20 Aug 2009 19:56:44 +0000 (21:56 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Thu, 20 Aug 2009 19:56:44 +0000 (21:56 +0200)
Cython/Compiler/ExprNodes.py

index 4f2f29818059682aa13e79adc08e3151ab8803f9..bd35c026bd7edcff68c6405d33b07b2e227ac93d 100644 (file)
@@ -5799,7 +5799,7 @@ static INLINE void __Pyx_RaiseNoneNotIterableError(void);
 """,
 impl = '''
 static INLINE void __Pyx_RaiseNoneNotIterableError(void) {
-    PyErr_SetString(PyExc_TypeError, "'NoneType' object is iterable");
+    PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable");
 }
 ''')