Fix check for error condition
This commit is contained in:
parent
d1badac99c
commit
b5e7ff4aeb
|
@ -2107,7 +2107,7 @@ PyCurses_Pair_Content(PyObject *self, PyObject *args)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
if (!pair_content(pair, &f, &b)) {
|
||||
if (pair_content(pair, &f, &b)==ERR) {
|
||||
PyErr_SetString(PyCursesError,
|
||||
"Argument 1 was out of range. (1..COLOR_PAIRS-1)");
|
||||
return NULL;
|
||||
|
|
Loading…
Reference in New Issue