taskpaper: rename file to proper extension

This commit is contained in:
Chris Sexton 2020-10-26 06:39:18 -04:00
parent a45af2a489
commit 4965bf7dfa
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ var tplMap = map[string]string{
"assignments": "assignments.adoc.tpl",
"schedule": "schedule.adoc.tpl",
"syllabus": "syllabus.adoc.tpl",
"course": "course.task.tpl",
"course": "course.taskpaper.tpl",
}
type DayMap map[int]time.Time
@ -145,7 +145,7 @@ func main() {
}
func writeTaskPaper(c Config) error {
f, err := os.Create("course.task")
f, err := os.Create("course.taskpaper")
defer f.Close()
if err != nil {
return err