Skip to content

Commit

Permalink
added numbers to roster
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh H committed Sep 18, 2018
1 parent 12317c8 commit ab572d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def get_random_pair():

pairs = ''
for i in range(0, len(names), 2):
pairs += "<h1>" + names[i] + ", " + names[i+1] + "</h1>"
pairs += "<h1>" + str(i//2+1) + ") " + names[i] + ", " + names[i+1] + "</h1>"

return pairs

Expand Down

0 comments on commit ab572d2

Please sign in to comment.