1
0
mirror of https://github.com/gryf/wicd.git synced 2026-02-02 22:25:50 +01:00

Don't crash on notification errors

This is not an essential feature, so no need to crash.
This commit is contained in:
David Paleino
2011-02-06 18:54:57 +01:00
parent 0852817ca3
commit 340725e9a7

View File

@@ -227,15 +227,24 @@ class TrayIcon(object):
def _show_notification(self, title, details, image=None):
if self.should_notify:
if not self._last_bubble:
self._last_bubble = pynotify.Notification(title, details,
image)
self._last_bubble.show()
else:
self._last_bubble.clear_actions()
self._last_bubble.clear_hints()
self._last_bubble.update(title, details, image)
self._last_bubble.show()
try:
if not self._last_bubble:
self._last_bubble = pynotify.Notification(title, details,
image)
self._last_bubble.show()
else:
self._last_bubble.clear_actions()
self._last_bubble.clear_hints()
self._last_bubble.update(title, details, image)
self._last_bubble.show()
except Exception, e:
if hasattr(e, 'message') and e.message != '':
msg = e.message
elif hasattr(e, 'args') and len(e.args) > 0:
msg = e.args[-1]
else:
msg = str(e)
print "Exception during notification: %s" % msg
self.should_notify = False