Skip to content

Commit b1677f3

Browse files
Update faulthandler.c
Co-authored-by: Sam Gross <[email protected]>
1 parent b710acb commit b1677f3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Modules/faulthandler.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,7 @@ faulthandler_dump_traceback(int fd, int all_threads,
208208
(void)_Py_DumpTracebackThreads(fd, NULL, tstate);
209209
}
210210
else {
211-
if (all_threads == FT_IGNORE_ALL_THREADS)
212-
{
211+
if (all_threads == FT_IGNORE_ALL_THREADS) {
213212
PUTS(fd, "<Cannot show all threads while the GIL is disabled>\n");
214213
}
215214
if (tstate != NULL)

0 commit comments

Comments
 (0)