From 18a219f4b5894201ecc2089792408d95c62459ed Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Thu, 11 Aug 2011 11:59:28 +0100 Subject: [PATCH] Spacing makes the difference --- app/groups/models.py | 2 +- app/groups/views.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/groups/models.py b/app/groups/models.py index a0abfb2..82b6b6b 100644 --- a/app/groups/models.py +++ b/app/groups/models.py @@ -54,7 +54,7 @@ class GroupRequest(models.Model): def character(self): char = self.user.get_profile().primary_character if char: - return "[%s]%s" % (char.corporation.ticker, char.name) + return "[%s] %s" % (char.corporation.ticker, char.name) else: return "Unknown" diff --git a/app/groups/views.py b/app/groups/views.py index c26514d..220d283 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"