Skip to content

Commit

Permalink
Fix format error (#27963)
Browse files Browse the repository at this point in the history
  • Loading branch information
lunny authored Nov 8, 2023
1 parent f48a863 commit 69d98f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/context/repo.go
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,7 @@ func getRefName(ctx *Base, repo *Repository, pathType RepoRefType) string {
return getRefNameFromPath(ctx, repo, path, func(s string) bool {
b, exist, err := git_model.FindRenamedBranch(ctx, repo.Repository.ID, s)
if err != nil {
log.Error("FindRenamedBranch", err)
log.Error("FindRenamedBranch: %v", err)
return false
}

Expand Down

0 comments on commit 69d98f8

Please sign in to comment.