From a79182e50d5dfd55389fab547110de24bb18ae87 Mon Sep 17 00:00:00 2001 From: William Wagner Moraes Artero Date: Tue, 25 Feb 2020 19:56:07 +0100 Subject: [PATCH] fix: accidentally escaped %s --- pkg/commands/pull_request.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/commands/pull_request.go b/pkg/commands/pull_request.go index da9775d08..3b08090e7 100644 --- a/pkg/commands/pull_request.go +++ b/pkg/commands/pull_request.go @@ -33,7 +33,7 @@ func NewService(typeName string, repositoryDomain string, siteDomain string) *Se case "github": return &Service{ Name: repositoryDomain, - PullRequestURL: fmt.Sprintf("https://%s%s", siteDomain, "/%s/%s/compare/%%s?expand=1"), + PullRequestURL: fmt.Sprintf("https://%s%s", siteDomain, "/%s/%s/compare/%s?expand=1"), } case "bitbucket": return &Service{