summaryrefslogtreecommitdiff
path: root/packages/templatetags
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2011-05-21 02:48:37 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2011-05-21 02:48:37 -0300
commit1288e890dfd88778163f51f6a6d93edd5784d055 (patch)
tree2a37cdc31e526db198da1b1da34df8d3e3147462 /packages/templatetags
parentfd9ecb6eb1c8ee56adfbb58640d7a98baa6cd62c (diff)
Fix
Diffstat (limited to 'packages/templatetags')
-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: