summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main/templatetags/bugs.py1
-rw-r--r--releng/management/commands/syncisos.py2
2 files changed, 3 insertions, 0 deletions
diff --git a/main/templatetags/bugs.py b/main/templatetags/bugs.py
index b548859a..7e00ce57 100644
--- a/main/templatetags/bugs.py
+++ b/main/templatetags/bugs.py
@@ -3,4 +3,5 @@ register = template.Library()
@register.simple_tag
def bug_link(bugid):
+ # FIXME: this needs rebranded, but I'm not sure it gets called anywhere
return "<a href=\"https://bugs.archlinux.org/task/{0}\">FS#{0}</a>".format(bugid)
diff --git a/releng/management/commands/syncisos.py b/releng/management/commands/syncisos.py
index 060ab2c1..b98c3e78 100644
--- a/releng/management/commands/syncisos.py
+++ b/releng/management/commands/syncisos.py
@@ -45,6 +45,8 @@ class Command(BaseCommand):
isonames = Iso.objects.values_list('name', flat=True)
active_isos = parser.parse(settings.ISO_LIST_URL)
+ print(active_isos)
+ print(isonames)
for iso in active_isos:
# create any names that don't already exist
if iso not in isonames: