diff options
author | Christian Grothoff <christian@grothoff.org> | 2017-11-08 19:07:21 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2017-11-08 19:07:21 +0100 |
commit | 166594115404baba540968398e1fa420993fed50 (patch) | |
tree | d98f725a2f0816d63a68b16df2f98b7468917c0a /contrib/render.py | |
parent | 1139f74ffe89ea31b5a15f0a2c174e054e19e2b6 (diff) |
fix misc typos in auditor report logic
Diffstat (limited to 'contrib/render.py')
-rwxr-xr-x | contrib/render.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/render.py b/contrib/render.py index 093db3559..47c00bb25 100755 --- a/contrib/render.py +++ b/contrib/render.py @@ -31,10 +31,10 @@ class StdinLoader(BaseLoader): jsonFile1 = open (sys.argv[1], 'r') -jsonData1 = json.load(jsonFile) +jsonData1 = json.load(jsonFile1) jsonFile2 = open (sys.argv[2], 'r') -jsonData2 = json.load(jsonFile) +jsonData2 = json.load(jsonFile2) jinjaEnv = jinja2.Environment(loader=StdinLoader(), lstrip_blocks=True, |