Indentation cleanup (partial)

This commit is contained in:
Michael DeHaan 2012-07-15 09:32:47 -04:00
commit 68a9adc1be
9 changed files with 45 additions and 52 deletions

View file

@ -177,11 +177,11 @@ def parse_json(data):
# not JSON, but try "Baby JSON" which allows many of our modules to not
# require JSON and makes writing modules in bash much simpler
results = {}
try :
try:
tokens = shlex.split(data)
except:
print "failed to parse json: "+ data
raise;
raise
for t in tokens:
if t.find("=") == -1: