make command module error when no -a more obvious as command is the default module and someone

may forget about -a.  The CLI already warns about no host pattern by pulling up usage.
This commit is contained in:
Michael DeHaan 2012-03-01 22:25:01 -05:00
parent 146cb3ff7e
commit c8b1bbc7ea

View file

@ -31,7 +31,7 @@ import traceback
if len(sys.argv) == 1:
print json.dumps({
"failed" : True,
"msg" : "at least a command name is required"
"msg" : "the command module requires arguments (-a)"
})
sys.exit(1)