diff --git a/Modules/_cursesmodule.c b/Modules/_cursesmodule.c index 2e14abb7797..acff973f2a0 100644 --- a/Modules/_cursesmodule.c +++ b/Modules/_cursesmodule.c @@ -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;