add 7 days for classes not 1

This commit is contained in:
Chris Sexton 2019-08-09 20:39:58 -04:00
parent 30ae21a823
commit f45f2ae21d
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -74,7 +74,7 @@ func class(file *os.File) {
"Week": fmt.Sprintf("Week %d", i+1),
}
check(body.Execute(file, info))
day = day.Add(24 * time.Hour)
day = day.Add(24 * 7 * time.Hour)
}
check(foot.Execute(file, nil))
}