From bee58854b748fbdb17a983a7d30438b41dae4c87 Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Sun, 13 Apr 2008 17:15:16 +0100 Subject: [PATCH] Bugfix: error reporting in background handler was broken. --- zeroinstall/injector/background.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zeroinstall/injector/background.py b/zeroinstall/injector/background.py index e1be5e4..6c58ee2 100644 --- a/zeroinstall/injector/background.py +++ b/zeroinstall/injector/background.py @@ -60,7 +60,7 @@ class BackgroundHandler(handler.Handler): _exec_gui(interface.uri, '--refresh') def report_error(self, exception, tb = None): - notify("Zero Install", "Error updating %s: %s" % (self.title, str(exception))) + self.notify("Zero Install", "Error updating %s: %s" % (self.title, str(exception))) def notify(self, title, message, timeout = 0, actions = []): """Send a D-BUS notification message if possible. If there is no notification -- 2.11.4.GIT