From 7638c0ecf8471a3d8e786acc37b20af0a50f93a9 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Thu, 1 Mar 2012 22:10:47 -0500 Subject: [PATCH] -p has been replaced by a required option. Various docs changes. --- command | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/command b/command index 7d3c2f32bd3..a9af113f240 100755 --- a/command +++ b/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)