summaryrefslogtreecommitdiff
path: root/listcommands.py
diff options
context:
space:
mode:
Diffstat (limited to 'listcommands.py')
-rw-r--r--listcommands.py17
1 files changed, 9 insertions, 8 deletions
diff --git a/listcommands.py b/listcommands.py
index 136d214..f93c3d7 100644
--- a/listcommands.py
+++ b/listcommands.py
@@ -4,24 +4,25 @@ from classes import Colors
class ListCommands(object):
info = {
- "info" : "this is stout",
- "set" : "set a value",
+ 'info' : 'this is stout',
+ 'set' : ['set a value', 3],
}
commands = {
- 'quit' : None,
+ 'quit' : None, #quit and exit do same thing
+ 'exit' : None,
'clear' : None,
- 'set' : ['user', 'host'],
- 'get' : None
+ 'set' : ['user'],
+ 'get' : ['user', 'user?', 'host', 'port']
}
@staticmethod
def err(err, info = ''):
if err == 'keyword':
- sys.stderr.write(Colors.red + "keyword inesistente\n" + Colors.black)
+ sys.stderr.write(Colors.red + 'keyword inesistente\n' + Colors.black)
elif err == 'wrong':
- sys.stderr.write(Colors.red + "sintassi comando errata\n" + Colors.black)
+ sys.stderr.write(Colors.red + 'sintassi comando errata\n' + Colors.black)
elif err == 'personal':
- sys.stderr.write(Colors.red + str(info) + "\n" + Colors.black)
+ sys.stderr.write(Colors.red + str(info) + '\n' + Colors.black)
else:
pass