diff options
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-x | bitbake/bin/bitbake | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index cef59c9117..c2088d9320 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake | |||
@@ -181,12 +181,12 @@ Default BBFILES are the .bb files in the current directory.""" ) | |||
181 | ui = "knotty" | 181 | ui = "knotty" |
182 | 182 | ||
183 | try: | 183 | try: |
184 | # Dynamically load the UI based on the ui name. Although we | 184 | # Dynamically load the UI based on the ui name. Although we |
185 | # suggest a fixed set this allows you to have flexibility in which | 185 | # suggest a fixed set this allows you to have flexibility in which |
186 | # ones are available. | 186 | # ones are available. |
187 | exec "from bb.ui import " + ui | 187 | uimodule = __import__("bb.ui", fromlist=[ui]) |
188 | exec "return_value = " + ui + ".init(serverConnection.connection, serverConnection.events)" | 188 | return_value = getattr(uimodule, ui).init(serverConnection.connection, serverConnection.events) |
189 | except ImportError: | 189 | except AttributeError: |
190 | print "FATAL: Invalid user interface '%s' specified. " % ui | 190 | print "FATAL: Invalid user interface '%s' specified. " % ui |
191 | print "Valid interfaces are 'ncurses', 'depexp' or the default, 'knotty'." | 191 | print "Valid interfaces are 'ncurses', 'depexp' or the default, 'knotty'." |
192 | except Exception, e: | 192 | except Exception, e: |