diff options
author | Unknwon <u@gogs.io> | 2017-02-11 00:03:10 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2017-02-11 00:03:10 -0500 |
commit | 0958fe5a4eddeca1c005f5022c9aaeb61b097a00 (patch) | |
tree | d7735b146732021302dca72b3a6d760ae0d2a983 /modules/context/repo.go | |
parent | 4a1dc29e233a5da5ebf4954b5ce15bb8fc98d974 (diff) |
Improve Open Graph Meta tags (#3664)
Diffstat (limited to 'modules/context/repo.go')
-rw-r--r-- | modules/context/repo.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/context/repo.go b/modules/context/repo.go index 8320afab..924898aa 100644 --- a/modules/context/repo.go +++ b/modules/context/repo.go @@ -242,7 +242,7 @@ func RepoAssignment(args ...bool) macaron.Handler { tags, err := ctx.Repo.GitRepo.GetTags() if err != nil { - ctx.Handle(500, fmt.Sprintf("GetTags '%d'", ctx.Repo.Repository.RepoPath()), err) + ctx.Handle(500, fmt.Sprintf("GetTags '%s'", ctx.Repo.Repository.RepoPath()), err) return } ctx.Data["Tags"] = tags |