From 7bb31da3cbfc97a298661e0668f2f2caf8abbe4f Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Fri, 21 May 2010 20:04:52 +0200 Subject: [PATCH] [sulfur] make ExceptionDialog not freeze UI on exit --- sulfur/src/sulfur/dialogs.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/sulfur/src/sulfur/dialogs.py b/sulfur/src/sulfur/dialogs.py index 15aa9b323..2808993ce 100644 --- a/sulfur/src/sulfur/dialogs.py +++ b/sulfur/src/sulfur/dialogs.py @@ -3253,9 +3253,6 @@ class LicenseDialog: class ExceptionDialog: - def __init__(self): - pass - def show(self, errmsg = None, exc_data = None): if errmsg is None: @@ -3288,4 +3285,3 @@ class ExceptionDialog: okDialog(None, _("Your report has been submitted successfully! Thanks a lot.")) else: okDialog(None, _("Cannot submit your report. Not connected to Internet?")) - raise SystemExit(1)