summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2016-10-10 16:17:39 +0200
committeremkael <emkael@tlen.pl>2016-10-10 16:17:39 +0200
commit70f771d2ab31847333b2c438466fe35895bc24db (patch)
tree8628229e4a90c60f966de097079b2261e503e07e
parente0ac2a81cb35d8c005d0e4b7846a2eca3dca4c31 (diff)
clearing up Pair info for printing purposesporting_to_python2
-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):