Simple type

This commit is contained in:
Denis Zheleztsov 2015-07-23 11:33:20 +03:00
parent 469c28991c
commit 3e47ba7e85

View File

@ -54,6 +54,8 @@ def type_exec(action):
elif action['type'] == 'exec':
get_cmd(action['command'])
return action['command']
elif action['type'] == 'simple':
get_cmd(action['command'])
else:
return 'Unknown type!'