about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEmile <hanemile@protonmail.com>2019-09-23 12:42:36 +0200
committerEmile <hanemile@protonmail.com>2019-09-23 12:42:36 +0200
commit52754aaaaa4b133834eab940e234df4a83837202 (patch)
tree686e67b13cd42329de90a8dee45b50f5ee356674
parent205c92b576475a3224d88bfef7aa927ca29e08c1 (diff)
removed the code wrigin to a responseWriter
-rw-r--r--funcs.go2
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")
 	}
 }