]> git.poda.fr Git - converter.git/commitdiff
Prevent GUI from crashing when logging master
authorJulien <None>
Sat, 8 Nov 2025 11:36:32 +0000 (12:36 +0100)
committerJulien <None>
Sat, 8 Nov 2025 11:36:32 +0000 (12:36 +0100)
converter.py

index b6db1419ffa76884903308ea81713986ec866aea..b87a7cdc4cb2720f11deb8562628e7abfac200bc 100755 (executable)
@@ -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()