Commit 19fee9ac authored by Stefan Behnel's avatar Stefan Behnel

fix error message

parent 3d2aa773
......@@ -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");
}
''')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment