From 39087138ffd5d427f07ecaa580a40885c5ffaff3 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Fri, 6 Aug 2010 16:08:32 -0700 Subject: Drop the 'ui failed to start' message, as the ui_init does more in knotty Signed-off-by: Chris Larson --- bin/bitbake | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'bin') diff --git a/bin/bitbake b/bin/bitbake index 7caa5d95e..846172a48 100755 --- a/bin/bitbake +++ b/bin/bitbake @@ -198,11 +198,7 @@ Default BBFILES are the .bb files in the current directory.""") print("FATAL: Invalid user interface '%s' specified. " % ui) print("Valid interfaces are 'ncurses', 'depexp' or the default, 'knotty'.") else: - try: - return_value = ui_init(serverConnection.connection, serverConnection.events) - except Exception as e: - print("FATAL: Unable to start to '%s' UI: %s" % (ui, e)) - raise + return_value = ui_init(serverConnection.connection, serverConnection.events) finally: serverConnection.terminate() -- cgit 1.2.3-korg