diff --git a/src/calibre/gui2/notify.py b/src/calibre/gui2/notify.py index d44ee957ba..67efef565a 100644 --- a/src/calibre/gui2/notify.py +++ b/src/calibre/gui2/notify.py @@ -167,7 +167,12 @@ class AppleNotifier(Notifier): def get_notifier(systray=None): ans = None if islinux: - ans = get_dbus_notifier() + try: + ans = get_dbus_notifier() + except Exception: + import traceback + traceback.print_exc() + ans = None elif isosx: if get_osx_version() >= (10, 8, 0): ans = AppleNotifier()