From 009b34bccb12ce15264f9dc6199d0a45ffed9bc8 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Thu, 8 Jan 2009 22:25:46 +0000 Subject: [PATCH] Tell the user which UI was tried when unable to start --- deluge/ui/ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/ui/ui.py b/deluge/ui/ui.py index a937f1c1e..53202b7b0 100644 --- a/deluge/ui/ui.py +++ b/deluge/ui/ui.py @@ -62,5 +62,5 @@ class UI: from deluge.ui.console.main import ConsoleUI ui = ConsoleUI(ui_args).run() except ImportError: - log.error("Unable to find the requested UI. Please select a different UI with the '-u' option or alternatively use the '-s' option to select a different default UI.") + log.error("Unable to find the requested UI: %s. Please select a different UI with the '-u' option or alternatively use the '-s' option to select a different default UI.", selected_ui) sys.exit(0)