diff options
Diffstat (limited to 'lib/listcommands.py')
-rw-r--r-- | lib/listcommands.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/listcommands.py b/lib/listcommands.py index 8313d26..74079c9 100644 --- a/lib/listcommands.py +++ b/lib/listcommands.py @@ -6,13 +6,14 @@ class ListCommands(object): info = { 'info' : 'this is stout', 'set' : ['set a value', 3], + 'get' : ['return a value', 3] } commands = { 'quit' : None, 'clear' : None, 'set' : ['user'], - 'get' : ['user', 'user?', 'host', 'port'] + 'get' : ['i', ['user', 'host', 'port'], 'user?'] } @staticmethod |