summaryrefslogtreecommitdiffstats
path: root/mark.py
diff options
context:
space:
mode:
authorjwansek <eddie.atten.ea29@gmail.com>2022-01-21 20:00:38 +0000
committerjwansek <eddie.atten.ea29@gmail.com>2022-01-21 20:00:38 +0000
commit4f0dde8e96bf504887cfa4cc6b3c1df85364a329 (patch)
tree2412812eefc7805db1e60f119862292a07ab39b2 /mark.py
parent593124e9db06ff7a1621c62129ef9fcdbc692c43 (diff)
downloadSmarker-4f0dde8e96bf504887cfa4cc6b3c1df85364a329.tar.gz
Smarker-4f0dde8e96bf504887cfa4cc6b3c1df85364a329.zip
did some more work on rendering txt reports
Diffstat (limited to 'mark.py')
-rw-r--r--mark.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mark.py b/mark.py
index 755ed6f..9c0ec6b 100644
--- a/mark.py
+++ b/mark.py
@@ -38,7 +38,7 @@ def main(**kwargs):
with open(os.path.join("templates", "%s.jinja2" % kwargs["format"]), "r") as f:
jinja_template = jinja2.Template(f.read())
- strout = jinja_template.render(**output, **jinja_helpers._get_helpers())
+ strout = jinja_template.render(**output, **jinja_helpers._get_helpers(), **kwargs)
if output_file == "stdout":
print(strout)