Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'gajim/gtk/exception.py')
-rw-r--r--gajim/gtk/exception.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/gajim/gtk/exception.py b/gajim/gtk/exception.py
index 6b3fa2fd5..b0f784993 100644
--- a/gajim/gtk/exception.py
+++ b/gajim/gtk/exception.py
@@ -52,7 +52,10 @@ from gajim.gtk.util import get_gtk_version
try:
import sentry_sdk
-except ImportError:
+except Exception:
+ # Sentry has a lot of side effects on import
+ # make sure this optional dependency does not prevent
+ # Gajim from starting
pass
_exception_in_progress = threading.Lock()