have command module raise an error if no arguments are supplied

pull/3/head
Michael DeHaan 12 years ago
parent 1427ade3af
commit 19fdb7305d

@ -28,6 +28,13 @@ import sys
import datetime
import traceback
if len(sys.argv) == 1:
print json.dumps({
"failed" : True,
"msg" : "at least a command name is required"
})
sys.exit(1)
args = sys.argv[1:]
startd = datetime.datetime.now()

Loading…
Cancel
Save