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 3abdd0c649..8577df6e0c 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py | |||
@@ -78,7 +78,7 @@ class Command: | |||
78 | if command not in CommandsAsync.__dict__: | 78 | if command not in CommandsAsync.__dict__: |
79 | return None, "No such command" | 79 | return None, "No such command" |
80 | self.currentAsyncCommand = (command, commandline) | 80 | self.currentAsyncCommand = (command, commandline) |
81 | self.cooker.server_registration_cb(self.cooker.runCommands, self.cooker) | 81 | self.cooker.configuration.server_register_idlecallback(self.cooker.runCommands, self.cooker) |
82 | return True, None | 82 | return True, None |
83 | 83 | ||
84 | def runAsyncCommand(self): | 84 | def runAsyncCommand(self): |