From 4aca2c06cef157fe40e031640d999a1345618f52 Mon Sep 17 00:00:00 2001 From: jack1142 <6032823+jack1142@users.noreply.github.com> Date: Fri, 29 Jan 2021 22:49:43 +0100 Subject: [PATCH] Fix the documented default --- rich/logging.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rich/logging.py b/rich/logging.py index 8d166fd5..ca060509 100644 --- a/rich/logging.py +++ b/rich/logging.py @@ -34,7 +34,7 @@ class RichHandler(Handler): tracebacks_width (Optional[int], optional): Number of characters used to render tracebacks, or None for full width. Defaults to None. tracebacks_extra_lines (int, optional): Additional lines of code to render tracebacks, or None for full width. Defaults to None. tracebacks_theme (str, optional): Override pygments theme used in traceback. - tracebacks_word_wrap (bool, optional): Enable word wrapping of long tracebacks lines. Defaults to False. + tracebacks_word_wrap (bool, optional): Enable word wrapping of long tracebacks lines. Defaults to True. tracebacks_show_locals (bool, optional): Enable display of locals in tracebacks. Defaults to False. locals_max_length (int, optional): Maximum length of containers before abbreviating, or None for no abbreviation. Defaults to 10.