summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_notes.py
diff options
context:
space:
mode:
Diffstat (limited to 'bin/reproducible_html_notes.py')
-rwxr-xr-xbin/reproducible_html_notes.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py
index fe998748..6a130353 100755
--- a/bin/reproducible_html_notes.py
+++ b/bin/reproducible_html_notes.py
@@ -340,18 +340,6 @@ def index_issues(issues):
write_html_page(title=title, body=html, destfile=destfile)
log.info('Issues index now available at ' + desturl)
-def get_trailing_icon(package, bugs):
- html = ''
- if package in bugs:
- for bug in bugs[package]:
- html += '<span class="'
- if bugs[package][bug]['done']:
- html += 'bug-done" title="#' + str(bug) + ', done">#</span>'
- elif bugs[package][bug]['patch']:
- html += 'bug-patch" title="#' + str(bug) + ', with patch">+</span>'
- else:
- html += '" title="#' + str(bug) + '">+</span>'
- return html
def index_notes(notes, bugs):
log.debug('Building the index_notes page...')