summaryrefslogtreecommitdiff
path: root/contrib/render.py
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-11-08 19:07:21 +0100
committerChristian Grothoff <christian@grothoff.org>2017-11-08 19:07:21 +0100
commit166594115404baba540968398e1fa420993fed50 (patch)
treed98f725a2f0816d63a68b16df2f98b7468917c0a /contrib/render.py
parent1139f74ffe89ea31b5a15f0a2c174e054e19e2b6 (diff)
downloadexchange-166594115404baba540968398e1fa420993fed50.tar.gz
exchange-166594115404baba540968398e1fa420993fed50.tar.bz2
exchange-166594115404baba540968398e1fa420993fed50.zip
fix misc typos in auditor report logic
Diffstat (limited to 'contrib/render.py')
-rwxr-xr-xcontrib/render.py4
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,