Spacing makes the difference

This commit is contained in:
2011-08-11 11:59:28 +01:00
parent fd0ea4e14c
commit 18a219f4b5
2 changed files with 2 additions and 2 deletions

View File

@@ -54,7 +54,7 @@ class GroupRequest(models.Model):
def character(self): def character(self):
char = self.user.get_profile().primary_character char = self.user.get_profile().primary_character
if char: if char:
return "[%s]%s" % (char.corporation.ticker, char.name) return "[%s] %s" % (char.corporation.ticker, char.name)
else: else:
return "Unknown" return "Unknown"

View File

@@ -136,7 +136,7 @@ def admin_group(request, groupid):
char = member.get_profile().primary_character char = member.get_profile().primary_character
if char: if char:
charname = "[%s]%s" % (char.corporation.ticker, char.name) charname = "[%s] %s" % (char.corporation.ticker, char.name)
else: else:
charname = "Unknown" charname = "Unknown"