From 7896e93df457d2464ddd2fca2e5ffa0f50dcde69 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Wed, 23 Oct 2013 18:53:18 +0200 Subject: [PATCH] make unlock the command and open the alias --- tyshell | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tyshell b/tyshell index 13a5513..0027698 100755 --- a/tyshell +++ b/tyshell @@ -66,12 +66,12 @@ CmdEntry = namedtuple('CmdEntry','function helpstring') commands = alias({ 'exit': CmdEntry(exitcmd, 'Quits this shell'), 'help': CmdEntry(helpcmd, 'Helps you getting to know the available commands'), - 'open': CmdEntry(sendcmd(tuerSock, 'unlock'), 'Will try to unlock the apartment door'), + 'unlock': CmdEntry(sendcmd(tuerSock, 'unlock'), 'Will try to unlock the apartment door'), 'buzz': CmdEntry(sendcmd(tuerSock, 'buzz'), 'Will buzz the buzzer for the street door'), 'who': CmdEntry(whocmd, 'Shows the list of people, who are allowed to control this system'), },{ # aliases - 'unlock': 'open', + 'open': 'unlock', }) def complete_command(cmd): -- 2.30.2