From 0d515474b81f39bfafae8cdee4aed27277297308 Mon Sep 17 00:00:00 2001 From: zeripath Date: Tue, 7 Jan 2020 14:30:03 +0000 Subject: [PATCH] Remove stray printf (#9631) --- services/pull/patch.go | 1 - 1 file changed, 1 deletion(-) diff --git a/services/pull/patch.go b/services/pull/patch.go index cb8d01448..57a2997b3 100644 --- a/services/pull/patch.go +++ b/services/pull/patch.go @@ -171,7 +171,6 @@ func TestPatch(pr *models.PullRequest) error { scanner := bufio.NewScanner(stderrReader) for scanner.Scan() { line := scanner.Text() - fmt.Printf("%s\n", line) if strings.HasPrefix(line, prefix) { conflict = true filepath := strings.TrimSpace(strings.Split(line[len(prefix):], ":")[0])