diff options
author | emkael <emkael@tlen.pl> | 2016-10-10 16:17:39 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-10-10 16:17:39 +0200 |
commit | 70f771d2ab31847333b2c438466fe35895bc24db (patch) | |
tree | 8628229e4a90c60f966de097079b2261e503e07e /ql/lineup.py | |
parent | e0ac2a81cb35d8c005d0e4b7846a2eca3dca4c31 (diff) |
clearing up Pair info for printing purposesporting_to_python2
Diffstat (limited to 'ql/lineup.py')
-rw-r--r-- | ql/lineup.py | 2 |
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):
|