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)