From 747a562ddca10e29dd003e8b3c59f8f384d1bc8d Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Thu, 2 Jan 2014 10:58:50 -0500 Subject: fix the bug_link template tag --- main/templatetags/bugs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main') diff --git a/main/templatetags/bugs.py b/main/templatetags/bugs.py index d5764435..b548859a 100644 --- a/main/templatetags/bugs.py +++ b/main/templatetags/bugs.py @@ -3,4 +3,4 @@ register = template.Library() @register.simple_tag def bug_link(bugid): - return "FS#"+bugid+"" + return "FS#{0}".format(bugid) -- cgit v1.2.3