summaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorWilliam Wagner Moraes Artero <williamwmoraes@gmail.com>2020-02-25 19:56:07 +0100
committerJesse Duffield <jessedduffield@gmail.com>2020-03-01 10:57:12 +1100
commita79182e50d5dfd55389fab547110de24bb18ae87 (patch)
treec9031b8f5d807cd656a94da90defaeb6615d22f2 /pkg
parent6f4c595dde9a05fb092d6385639b80f2633cc239 (diff)
fix: accidentally escaped %s
Diffstat (limited to 'pkg')
-rw-r--r--pkg/commands/pull_request.go2
1 files changed, 1 insertions, 1 deletions
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{