summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--TODO1
-rwxr-xr-xbin/reproducible_html_indexes.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/TODO b/TODO
index 9ae138a3..bdf74ce1 100644
--- a/TODO
+++ b/TODO
@@ -157,6 +157,7 @@ properties:
** repo-comparison: check for binaries without source
** link howto on each coreboot/openwrt/netbsd/freebsd page
** pkg sets are still amd64 only atm… (and there is 404 link to the armhf page)
+** bin/_html_indexes.py: bugs = get_bugs() # this variable should not be global, else merely importing _html_indexes always queries UDD
* lesser prio
** dashboard:
diff --git a/bin/reproducible_html_indexes.py b/bin/reproducible_html_indexes.py
index cbd18897..a9accac0 100755
--- a/bin/reproducible_html_indexes.py
+++ b/bin/reproducible_html_indexes.py
@@ -535,7 +535,7 @@ def build_page(page, suite=None, arch=None):
log.info('"' + title + '" now available at ' + desturl)
-bugs = get_bugs() # FIXME: this variable should not be global, else merely importing _html_indexes always queries UDD
+bugs = get_bugs() # this variable should not be global, else merely importing _html_indexes always queries UDD
if __name__ == '__main__':
for arch in ARCHS: