From 05bc17ff9b9a2e3af39c7b61ed7ec9652837ddc3 Mon Sep 17 00:00:00 2001 From: Saifeddine ALOUI Date: Tue, 8 Oct 2024 11:30:10 +0200 Subject: [PATCH] Update utilities.py --- lollms/utilities.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lollms/utilities.py b/lollms/utilities.py index 3582f6c..c2d5336 100644 --- a/lollms/utilities.py +++ b/lollms/utilities.py @@ -356,7 +356,8 @@ def show_yes_no_dialog(title, text): root.destroy() return result - except: + except Exception as ex: + trace_exception(ex) return yes_or_no_input(text) def show_message_dialog(title, text):