Fix tcl/tk loading error handling

Co-authored-by: Ondrej Baranovič <nulano@nulano.eu>
This commit is contained in:
Javier Dehesa 2023-01-05 00:05:36 +00:00 committed by GitHub
parent e945ab382a
commit da39e4e38e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -365,7 +365,7 @@ load_tkinter_funcs(void) {
free(hMods);
if (found_tcl != 1) {
PyErr_SetString(PyExc_RuntimeError, "Could not find Tcl routines");
} else if (found_tk != 1) {
} else if (found_tk == 0) {
PyErr_SetString(PyExc_RuntimeError, "Could not find Tk routines");
}
return (int) ((found_tcl != 1) || (found_tk != 1));