diff --git a/jipstatus.py b/jipstatus.py
index 169f468..72e28c5 100755
--- a/jipstatus.py
+++ b/jipstatus.py
@@ -213,7 +213,7 @@ def initialize_logger(args):
Past
{%- endif %}
- - [{{issue['issue']}}]{% if issue['components'] |length > 0 %} [{{issue['components']|join(',')}}]{% endif %} {{issue['summary']}} {% if issue['resolution'] %} - was {{issue['resolution']|lower}}{% endif %}
+ - [{{issue['issue']}}]{% if issue['components'] |length > 0 %} [{{issue['components']|join(',')}}]{% endif %} {{issue['summary']}} {% if issue['resolution'] %} - was {{issue['resolution']|lower}}{% endif %}
{%- for c in issue['comments'] %}
{%- if loop.index == 1 %}
@@ -232,7 +232,7 @@ def initialize_logger(args):
- Ongoing
{%- endif %}
- - [{{issue['issue']}}]{% if issue['components'] |length > 0 %} [{{issue['components']|join(',')}}]{% endif %} {{issue['summary']}}
+ - [{{issue['issue']}}]{% if issue['components'] |length > 0 %} [{{issue['components']|join(',')}}]{% endif %} {{issue['summary']}}
{%- if loop.index == loop.length %}
{%- endif %}
@@ -271,12 +271,12 @@ def main(argv):
assignees.sort(key='Unassigned'.__eq__)
template = Template(output)
- print(template.render(assignees=assignees, updates=updates, pendings=pendings))
+ print(template.render(assignees=assignees, updates=updates, pendings=pendings, url=jira.client_info()))
if cfg.args.html:
f = open(cfg.args.html, 'w')
template = Template(output_html)
- f.write(template.render(assignees=assignees, updates=updates, pendings=pendings))
+ f.write(template.render(assignees=assignees, updates=updates, pendings=pendings, url=jira.client_info()))
f.close()
if __name__ == "__main__":