Skip to content

Commit

Permalink
team number starts with 1.
Browse files Browse the repository at this point in the history
  • Loading branch information
hidekuro committed Aug 3, 2017
1 parent 6f86079 commit 53d2ebf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions teambot.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ def team_to_string(teams) -> str:
members = ""
for m in t:
if members:
members += ""
members += ", "
members += m.nick or m.name
result += u"[Team {0}] {1}\n".format(i, members)
result += u"[Team {0}] {1}\n".format(i + 1, members)
return result


Expand Down

0 comments on commit 53d2ebf

Please sign in to comment.