From eaf81833971fcb2abf778d58609f25c0087a3737 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Sat, 7 Mar 2009 16:55:45 +0000 Subject: [PATCH] Fix up error message when unable to import a UI --- 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 583c6bffd..bcebfd3cf 100644 --- a/deluge/ui/ui.py +++ b/deluge/ui/ui.py @@ -63,5 +63,5 @@ class UI: ui = ConsoleUI(ui_args).run() except ImportError, e: log.exception(e) - 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) + log.error("Unable to start the requested UI: %s. Please examine the above traceback for more information on what you're missing. You may also 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)