From 41bd80fefb543259d7eba243326f2efac46fb3ee Mon Sep 17 00:00:00 2001 From: Henrique Dias Date: Wed, 27 Feb 2019 20:48:17 +0000 Subject: [PATCH] fix: remove unecessary print License: MIT Signed-off-by: Henrique Dias --- http/raw.go | 1 - 1 file changed, 1 deletion(-) diff --git a/http/raw.go b/http/raw.go index 19433387..75b9e558 100644 --- a/http/raw.go +++ b/http/raw.go @@ -82,7 +82,6 @@ var rawHandler = withUser(func(w http.ResponseWriter, r *http.Request, d *data) func addFile(ar archiver.Writer, d *data, path string) error { // Checks are always done with paths with "/" as path separator. path = strings.Replace(path, "\\", "/", -1) - fmt.Println(path) if !d.Check(path) { return nil }