Skip to content

Commit 1360059

Browse files
committed
Remove stray newline change.
1 parent 9cd75b7 commit 1360059

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Python/pylifecycle.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3497,7 +3497,8 @@ wait_for_thread_shutdown(PyThreadState *tstate)
34973497
result = PyObject_CallMethodNoArgs(threading, &_Py_ID(_shutdown));
34983498
if (result == NULL) {
34993499
PyErr_FormatUnraisable("Exception ignored on threading shutdown");
3500-
} else {
3500+
}
3501+
else {
35013502
Py_DECREF(result);
35023503
}
35033504
Py_DECREF(threading);

0 commit comments

Comments
 (0)