From b515d32d061404bc48a819fc45a2fdc2cdef8bfd Mon Sep 17 00:00:00 2001 From: Yannik Schmidt Date: Sat, 15 Jun 2024 10:01:14 +0200 Subject: [PATCH] hotfix: no crash on missing pgtext --- pgwrapper.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pgwrapper.py b/pgwrapper.py index c05a666..8614611 100644 --- a/pgwrapper.py +++ b/pgwrapper.py @@ -43,4 +43,5 @@ class ProgressBarWrapper: if self.progress_text: self.progress_text.configure(text=text) else: - raise AssertionError("No progress text in this wrapper created") + pass + #FIXME raise AssertionError("No progress text in this wrapper created")