From 1efd631f37c5c9c09316181b51a36330dfd2ae4e Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Sun, 11 Sep 2011 17:32:52 +0100 Subject: [PATCH] When showing the GUI during a background update, label the button as "Download" Before, it said "Run", which is misleading. --- 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 8cc2411..dd35744 100644 --- a/zeroinstall/injector/background.py +++ b/zeroinstall/injector/background.py @@ -107,7 +107,7 @@ class BackgroundHandler(handler.Handler): def confirm_import_feed(self, pending, valid_sigs): """Run the GUI if we need to confirm any keys.""" info(_("Can't update feed; signature not yet trusted. Running GUI...")) - _exec_gui(self.root, '--refresh', '--systray') + _exec_gui(self.root, '--download', '--refresh', '--systray') def report_error(self, exception, tb = None): from zeroinstall.injector import download -- 2.11.4.GIT