have command module raise an error if no arguments are supplied
This commit is contained in:
parent
a6b1f6c91f
commit
0491fa1dda
1 changed files with 7 additions and 0 deletions
7
command
7
command
|
@ -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…
Reference in a new issue