From 70f771d2ab31847333b2c438466fe35895bc24db Mon Sep 17 00:00:00 2001 From: emkael Date: Mon, 10 Oct 2016 16:17:39 +0200 Subject: clearing up Pair info for printing purposes --- ql/lineup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 '' for p in self.players ] + ', '.join([ p.info if p is not None else '' for p in self.players ]) ) def set_player(self, name): -- cgit v1.2.3