summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ql/lineup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ql/lineup.py b/ql/lineup.py
index c201d4b..688825b 100644
--- a/ql/lineup.py
+++ b/ql/lineup.py
@@ -95,7 +95,7 @@ class Pair(object):
return 'Team: %s - %s - %s' % (
self.team.name,
self.label,
- [ p.info if p is not None else '<blank>' for p in self.players ]
+ ', '.join([ p.info if p is not None else '<blank>' for p in self.players ])
)
def set_player(self, name):