diff options
Diffstat (limited to 'models/pull.go')
-rw-r--r-- | models/pull.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/pull.go b/models/pull.go index 97ca5444..efb24894 100644 --- a/models/pull.go +++ b/models/pull.go @@ -364,7 +364,7 @@ func (pr *PullRequest) testPatch() (err error) { log.Trace("PullRequest[%d].testPatch (patchPath): %s", pr.ID, patchPath) if err := pr.BaseRepo.UpdateLocalCopyBranch(pr.BaseBranch); err != nil { - return fmt.Errorf("UpdateLocalCopy: %v", err) + return fmt.Errorf("UpdateLocalCopy [%d]: %v", pr.BaseRepoID, err) } pr.Status = PULL_REQUEST_STATUS_CHECKING |