Skip to content

Commit c1800e0

Browse files
committed
implementation
1 parent 624be86 commit c1800e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/traceback.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1428,7 +1428,7 @@ def format(self, *, chain=True, _ctx=None, **kwargs):
14281428
f'+---------------- {title} ----------------\n')
14291429
_ctx.exception_group_depth += 1
14301430
if not truncated:
1431-
yield from exc.exceptions[i].format(chain=chain, _ctx=_ctx)
1431+
yield from exc.exceptions[i].format(chain=chain, _ctx=_ctx, colorize=colorize)
14321432
else:
14331433
remaining = num_excs - self.max_group_width
14341434
plural = 's' if remaining > 1 else ''

0 commit comments

Comments
 (0)