-p has been replaced by a required option. Various docs changes.

This commit is contained in:
Michael DeHaan 2012-03-01 22:10:47 -05:00
parent 0491fa1dda
commit 7638c0ecf8

View file

@ -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)