diff options
| author | Santo Cariotti <sancn@live.com> | 2017-07-20 08:32:13 +0000 |
|---|---|---|
| committer | Santo Cariotti <sancn@live.com> | 2017-07-20 08:32:13 +0000 |
| commit | d5fbfa71a49851bbf544f8d6ea8cf7eb75fb102c (patch) | |
| tree | 54e78d750321d4bc1d5432fe644bb50cc2af803d /app.py | |
| parent | bdf83e42d1bca4ffac3a03bfdbb27d06db74dc88 (diff) | |
fixed info command
Diffstat (limited to 'app.py')
| -rw-r--r-- | app.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -33,8 +33,10 @@ class Stout(Commands): try: if cmd[0] == 'info' and count == 1: print(ListCommands.info['info']) - else: + elif cmd[0] == 'info' and count == 2: print(ListCommands.info[cmd[1]]) + else: + raise KeyError except (KeyError, IndexError): ListCommands.err('keyword') else: |
