summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorroot <root@parabola.nu>2018-07-17 21:05:31 +0100
committerLuke Shumaker <lukeshu@parabola.nu>2019-03-10 01:08:41 -0500
commit93a77dfd32db4c7490b9e25705591585cd2b93b2 (patch)
tree3bd9b3a5ff7cab0a6130d05a853196f26f896070
parent7e4e5a1a1855016f527dd0fe7c748b87e8e6e4a8 (diff)
These changes were sitting on the server, and were timestamped 2017-11-07
-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: