fix: remove unecessary print

License: MIT
Signed-off-by: Henrique Dias <hacdias@gmail.com>

Former-commit-id: fc014a4e87fa75993f0cf8f64240effb3e2584d4 [formerly 5202c884e0a57d8c6bf978e7d08a00101d47808e] [formerly 66868567bca840214788a0519c8c3ad9ccbbc37c [formerly 41bd80fefb]]
Former-commit-id: f4b3c79d5dae50caa25789fd863458bf9961f437 [formerly 644718708ce007762ad18433a67eb5e321d1eae7]
Former-commit-id: 7270c35dbcbb668ddbc8c422cb78bcb4ff8ea56f
pull/726/head
Henrique Dias 2019-02-27 20:48:17 +00:00
parent ce68f48fb4
commit 0d1074b6d9
1 changed files with 0 additions and 1 deletions

View File

@ -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 { func addFile(ar archiver.Writer, d *data, path string) error {
// Checks are always done with paths with "/" as path separator. // Checks are always done with paths with "/" as path separator.
path = strings.Replace(path, "\\", "/", -1) path = strings.Replace(path, "\\", "/", -1)
fmt.Println(path)
if !d.Check(path) { if !d.Check(path) {
return nil return nil
} }