use join more

This commit is contained in:
Benjamin Schmid 2020-03-28 22:26:48 +01:00
parent 16db9ec009
commit 02730e8de5
1 changed files with 1 additions and 1 deletions

View File

@ -272,7 +272,7 @@ class one_night:
raise ValueError("Invalid number of players: " + str(len(self.player_list)))
# send confirmation
await self.send("Players: " + str([p.name() for p in self.player_list]))
await self.send("Players: " + ", ".join(p.name() for p in self.player_list))
async def set_roles(self):