CLI: tahoe_check: stop escaping the JSON output when using --raw

This commit is contained in:
Brian Warner 2009-02-02 21:12:32 -07:00
parent cfce8b5eab
commit 0716fbcd16

@ -35,7 +35,8 @@ def check(options):
return 1
jdata = resp.read()
if options.get("raw"):
pprint(jdata, stream=stdout)
stdout.write(jdata)
stdout.write("\n")
return 0
data = simplejson.loads(jdata)