-p has been replaced by a required option. Various docs changes.
This commit is contained in:
parent
0491fa1dda
commit
7638c0ecf8
1 changed files with 2 additions and 2 deletions
4
command
4
command
|
@ -45,13 +45,13 @@ try:
|
|||
except (OSError, IOError), e:
|
||||
print json.dumps({
|
||||
"failed": 1,
|
||||
"error": str(e),
|
||||
"msg": str(e),
|
||||
})
|
||||
sys.exit(1)
|
||||
except:
|
||||
print json.dumps({
|
||||
"failed" : 1,
|
||||
"traceback" : traceback.format_exc()
|
||||
"msg" : traceback.format_exc()
|
||||
})
|
||||
sys.exit(1)
|
||||
|
||||
|
|
Loading…
Reference in a new issue