From bd2482a3cd6896791a14b7fc21563edb95b54145 Mon Sep 17 00:00:00 2001 From: Paul Woolcock Date: Mon, 12 Feb 2018 23:37:29 -0500 Subject: [PATCH] Whoops, wrong string here --- src/models/repo.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/repo.rs b/src/models/repo.rs index 97c07f5..d6a7fd1 100644 --- a/src/models/repo.rs +++ b/src/models/repo.rs @@ -60,7 +60,7 @@ impl AsRef for RepoSite { match self { &RepoSite::Github => "github", &RepoSite::Gitlab => "gitlab", - &RepoSite::Bitbucket => "https://bitbucket.org", + &RepoSite::Bitbucket => "bitbucket", } } }