Skip to content

Commit

Permalink
[Tournaments] Upload correct name on Challonge
Browse files Browse the repository at this point in the history
  • Loading branch information
laggron42 committed Jun 26, 2021
1 parent e657fed commit cd27442
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tournaments/objects/challonge.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ async def add_participants(
params = {}
if seed:
params.update({"seed": [i for x, i in chunk_participants]})
participants = [str(x) for x in chunk_participants]
participants = [str(x[0]) for x in chunk_participants]
challonge_players = await self.request(
achallonge.participants.bulk_add, self.id, participants, **params
)
Expand Down

0 comments on commit cd27442

Please sign in to comment.