From 36e5d85e8e99a2ae967918799e43274106709629 Mon Sep 17 00:00:00 2001 From: Adam Waldenberg Date: Mon, 25 Mar 2013 03:30:27 +0100 Subject: [PATCH] Added a version tag to the XML output. This indicates with what version of gitinspector the output was generated. --- format.py | 1 + 1 file changed, 1 insertion(+) diff --git a/format.py b/format.py index 6429eda..bcca9e0 100644 --- a/format.py +++ b/format.py @@ -70,6 +70,7 @@ def output_header(): print(html_header.format(version.__version__, jquery_js, flot_js, pie_js, logo)) elif __selected_format__ == "xml": print("") + print("\t" + version.__version__ + "") def output_footer(): if __selected_format__ == "html":