diff options
author | Emile <hanemile@protonmail.com> | 2019-09-23 12:42:36 +0200 |
---|---|---|
committer | Emile <hanemile@protonmail.com> | 2019-09-23 12:42:36 +0200 |
commit | 52754aaaaa4b133834eab940e234df4a83837202 (patch) | |
tree | 686e67b13cd42329de90a8dee45b50f5ee356674 | |
parent | 205c92b576475a3224d88bfef7aa927ca29e08c1 (diff) |
removed the code wrigin to a responseWriter
-rw-r--r-- | funcs.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/funcs.go b/funcs.go index fbcd62d..afd2d06 100644 --- a/funcs.go +++ b/funcs.go @@ -59,9 +59,7 @@ func dumpall() { // download all the categories to the data/<category name> directory for _, category := range categories { - fmt.Fprintf(w, "downloading %s... ", category) log.Printf("downloading %s... ", category) downloadCategory(category) - fmt.Fprintf(w, "done.\n") } } |