Fix TerminalCommandsHandler using old JSON API

This commit is contained in:
Kristóf Tóth 2019-08-30 17:47:58 +02:00
parent a5db2f23a0
commit 517684e84a
1 changed files with 1 additions and 1 deletions

View File

@ -5,5 +5,5 @@ class TerminalCommandsHandler(TerminalCommands):
keys = ['history.bash']
def handle_event(self, message, _):
command = message['value']
command = message['command']
self.callback(command)