-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 4ce1f1dd5e
commit 847846af0e
7 changed files with 89 additions and 77 deletions

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)