From c20859b90b1d2fe579c11b3439d74c63ea838d66 Mon Sep 17 00:00:00 2001 From: Julien Date: Sat, 8 Nov 2025 12:36:32 +0100 Subject: [PATCH] Prevent GUI from crashing when logging --- converter.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/converter.py b/converter.py index b6db141..b87a7cd 100755 --- a/converter.py +++ b/converter.py @@ -23,7 +23,7 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF ''' import argparse -import collections +import collections.abc import filecmp # diff import os import queue @@ -884,7 +884,8 @@ class GUI: else: self.logOutput.insert(tk.END, message + "\n") - self.logOutput.see(tk.END) + # Crashes + #self.logOutput.see(tk.END) self.logOutput.configure(state="disabled") self.logLock.release() -- 2.47.3