Fix check for error condition

This commit is contained in:
Andrew M. Kuchling 2005-06-15 18:46:50 +00:00
parent d1badac99c
commit b5e7ff4aeb

View file

@ -2107,7 +2107,7 @@ PyCurses_Pair_Content(PyObject *self, PyObject *args)
return NULL; return NULL;
} }
if (!pair_content(pair, &f, &b)) { if (pair_content(pair, &f, &b)==ERR) {
PyErr_SetString(PyCursesError, PyErr_SetString(PyCursesError,
"Argument 1 was out of range. (1..COLOR_PAIRS-1)"); "Argument 1 was out of range. (1..COLOR_PAIRS-1)");
return NULL; return NULL;