From 6c054301c258969a43e852d84a615e23a6af1465 Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Tue, 10 Feb 2015 21:39:47 -0500 Subject: [PATCH] Rename tablizer to tildescores --- templates/{table.html => scores.html} | 0 tablizer.go => tildescores/scores.go | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename templates/{table.html => scores.html} (100%) rename tablizer.go => tildescores/scores.go (98%) diff --git a/templates/table.html b/templates/scores.html similarity index 100% rename from templates/table.html rename to templates/scores.html diff --git a/tablizer.go b/tildescores/scores.go similarity index 98% rename from tablizer.go rename to tildescores/scores.go index 756c30d..047a147 100644 --- a/tablizer.go +++ b/tildescores/scores.go @@ -318,7 +318,7 @@ func generate(title string, table *Table, outputFile string) { } w := bufio.NewWriter(f) - template, err := template.New("").Funcs(funcMap).ParseFiles("templates/table.html") + template, err := template.New("").Funcs(funcMap).ParseFiles("../templates/scores.html") if err != nil { panic(err) }