Commit 9695b117 authored by Denis Bilenko's avatar Denis Bilenko

fix html in generate_report.py

parent f57a753b
......@@ -244,7 +244,7 @@ def format_table(table, row_def, rows, column_def, columns, common_fields):
def decorate_changeset(changeset):
rev, hash = changeset.split('_')
text = 'gevent changeset %s: %s</a>' % (rev, hash)
text = 'gevent changeset %s: %s' % (rev, hash)
url = '%s/changeset/%s' % (REPO_URL, hash.rstrip('+'))
text = '<a href="%s">%s</a>' % (url, text.replace('+', '<b>+</b>'))
return text
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment