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:54 +00:00 committed by GitHub
parent da39e4e38e
commit 2cc40cc7f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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