diff options
Diffstat (limited to 'bitbake/lib/bb/command.py')
-rw-r--r-- | bitbake/lib/bb/command.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py index e83751a2fa..9841e6874e 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py | |||
@@ -82,7 +82,7 @@ class Command: | |||
82 | if command not in CommandsAsync.__dict__: | 82 | if command not in CommandsAsync.__dict__: |
83 | return "No such command" | 83 | return "No such command" |
84 | self.currentAsyncCommand = (command, commandline) | 84 | self.currentAsyncCommand = (command, commandline) |
85 | self.cooker.server.register_idle_function(self.cooker.runCommands, self.cooker) | 85 | self.cooker.server_registration_cb(self.cooker.runCommands, self.cooker) |
86 | return True | 86 | return True |
87 | except: | 87 | except: |
88 | import traceback | 88 | import traceback |