summaryrefslogtreecommitdiffstats
path: root/models/pull.go
diff options
context:
space:
mode:
authorAlexander Lunegov <alunegov@gmail.com>2016-12-21 12:09:43 +0500
committerKim "BKC" Carlbäcker <kim.carlbacker@gmail.com>2016-12-22 08:18:41 +0100
commitd5d21b67d24908dfddad95ac9a1e2f66395cad51 (patch)
treef3cd83fbf11ff8006bc9ce639d719591b0df08d6 /models/pull.go
parentc46eb3f5b3db6bd9b4568c1ff3e8d70f733e66ee (diff)
downloadgitea-d5d21b67d24908dfddad95ac9a1e2f66395cad51.tar.gz
gitea-d5d21b67d24908dfddad95ac9a1e2f66395cad51.zip
Fix string format verbs (#3637)
Diffstat (limited to 'models/pull.go')
-rw-r--r--models/pull.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/models/pull.go b/models/pull.go
index f42c2cef81..40e40894a9 100644
--- a/models/pull.go
+++ b/models/pull.go
@@ -929,7 +929,7 @@ func TestPullRequests() {
pr, err := GetPullRequestByID(com.StrTo(prID).MustInt64())
if err != nil {
- log.Error(4, "GetPullRequestByID[%d]: %v", prID, err)
+ log.Error(4, "GetPullRequestByID[%s]: %v", prID, err)
continue
} else if err = pr.testPatch(); err != nil {
log.Error(4, "testPatch[%d]: %v", pr.ID, err)