Fix up error message when unable to import a UI

This commit is contained in:
Andrew Resch 2009-03-07 16:55:45 +00:00
parent 8fda4d1fde
commit eaf8183397
1 changed files with 1 additions and 1 deletions

View File

@ -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)