summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/templatetags/package_extras.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/templatetags/package_extras.py b/packages/templatetags/package_extras.py
index 77ba79ba..afa29a7b 100644
--- a/packages/templatetags/package_extras.py
+++ b/packages/templatetags/package_extras.py
@@ -51,7 +51,7 @@ def userpkgs(user):
@register.simple_tag
def bugs_list(package):
data = {
- '@action': 'search'
+ '@action': 'search',
'title': package.pkgname,
}
return "https://bugs.parabolagnulinux.org/bugs/issue?%s" % urlencode(data)
@@ -63,5 +63,5 @@ def bug_report(package):
'keyword': 'packages',
'title': '[%s]' % package.pkgname,
}
- return "https://bugs.parabolagnulinux.org/bugs/issue?" % urlencode(data)
+ return "https://bugs.parabolagnulinux.org/bugs/issue?%s" % urlencode(data)
# vim: set ts=4 sw=4 et: