From fd0ea4e14c08e1a782a33865656d669446fed568 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Thu, 11 Aug 2011 11:57:09 +0100 Subject: [PATCH] Missed out tuple def for string formatting --- app/groups/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/groups/views.py b/app/groups/views.py index a397404..c26514d 100644 --- a/app/groups/views.py +++ b/app/groups/views.py @@ -136,7 +136,7 @@ def admin_group(request, groupid): char = member.get_profile().primary_character if char: - charname = "[%s]%s" % char.corporation.ticker, char.name + charname = "[%s]%s" % (char.corporation.ticker, char.name) else: charname = "Unknown"