Skip to content

Commit a48f2ac

Browse files
Fix failing build.
1 parent 801c4f1 commit a48f2ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/atexitmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ atexit_callfuncs(struct atexit_state *state)
161161
PyObject *res = PyObject_Call(func, args, kwargs);
162162
if (res == NULL) {
163163
PyErr_FormatUnraisable(
164-
"Exception ignored in atexit callback %R", the_func);
164+
"Exception ignored in atexit callback %R", func);
165165
}
166166
else {
167167
Py_DECREF(res);

0 commit comments

Comments
 (0)