summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--git.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/git.go b/git.go
index 95647f0..ab5094e 100644
--- a/git.go
+++ b/git.go
@@ -61,7 +61,7 @@ func tokenForHost(host string) string {
func guessClient(host string) (Client, error) {
token := tokenForHost(host)
if len(token) == 0 {
- return nil, fmt.Errorf("please set a GITTY_TOKENS env var")
+ return nil, fmt.Errorf("please set a GITTY_TOKENS env var for host " + host)
}
if strings.EqualFold(host, "github.com") {