Fix teams>10

This commit is contained in:
Neale Pickett 2015-04-22 08:31:00 -06:00
parent fe0f7c8f7e
commit 0250ecf926
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ END {
print " ],"; print " ],";
print " \"teams\": {"; print " \"teams\": {";
for (i in teamnames) { for (i = 1; i <= nteams; i += 1) {
if (i > 1) { if (i > 1) {
print ","; print ",";
} }
@ -42,4 +42,4 @@ END {
print ""; print "";
print " }"; print " }";
print "}"; print "}";
} }