summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Resch <andrewresch@gmail.com>2009-01-08 22:25:46 +0000
committerAndrew Resch <andrewresch@gmail.com>2009-01-08 22:25:46 +0000
commit009b34bccb12ce15264f9dc6199d0a45ffed9bc8 (patch)
tree038bdd9c658f3ad0daeee4761f25ba27a1437b6a
parent6cd794fa185a8df7e3507a9b4e046d6bc8adcb93 (diff)
downloaddeluge-009b34bccb12ce15264f9dc6199d0a45ffed9bc8.tar.gz
deluge-009b34bccb12ce15264f9dc6199d0a45ffed9bc8.tar.bz2
deluge-009b34bccb12ce15264f9dc6199d0a45ffed9bc8.zip
Tell the user which UI was tried when unable to start
-rw-r--r--deluge/ui/ui.py2
1 files changed, 1 insertions, 1 deletions
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)