aboutsummaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorzeripath <art27@cantab.net>2020-01-07 14:30:03 +0000
committerGitHub <noreply@github.com>2020-01-07 14:30:03 +0000
commit0d515474b81f39bfafae8cdee4aed27277297308 (patch)
treec53c13a240f4b7ec78c67d614de5a206edda659d /services
parentc88f0fed360516715053b17ef30087fca2e892c0 (diff)
downloadgitea-0d515474b81f39bfafae8cdee4aed27277297308.tar.gz
gitea-0d515474b81f39bfafae8cdee4aed27277297308.zip
Remove stray printf (#9631)
Diffstat (limited to 'services')
-rw-r--r--services/pull/patch.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/services/pull/patch.go b/services/pull/patch.go
index cb8d014486..57a2997b36 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])