From 227c4b5d107775d8250051f1c4634735e8aaee4a Mon Sep 17 00:00:00 2001 From: Disty0 Date: Thu, 6 Mar 2025 21:34:03 +0300 Subject: [PATCH] Remove code_width from install_traceback --- CHANGELOG.md | 5 +++++ installer.py | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0387a0b55..ffb84d8a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log for SD.Next +## Update for 2025-03-06 + +- fix installer not starting when older version of rich is installed +- ipex, fix untyped_storage and torch.eye + ## Update for 2025-02-28 Primarily a hotfix/service release plus few UI improvements and one exciting new feature: Remote-VAE! diff --git a/installer.py b/installer.py index baed6466c..30e0cb377 100644 --- a/installer.py +++ b/installer.py @@ -91,7 +91,6 @@ def install_traceback(suppress: list = []): extra_lines=os.environ.get('SD_TRACELINES', 1), max_frames=os.environ.get('SD_TRACEFRAMES', 16), width=os.environ.get('SD_TRACEWIDTH', console.width), - code_width=os.environ.get('SD_TRACEWIDTH', console.width) - 12, word_wrap=os.environ.get('SD_TRACEWRAP', False), indent_guides=os.environ.get('SD_TRACEINDENT', False), show_locals=os.environ.get('SD_TRACELOCALS', False),