commit bda9b4bf27784158b75dd1b8c28165eab2311931
parent 4d0a5834991f4debd135280b03d29f26735457c0
Author: Oliver Lowe <o@olowe.co>
Date: Mon, 4 Nov 2024 09:35:02 +1100
Gitlab: correct url hostname parse error message
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Gitlab/Gitlab.go b/Gitlab/Gitlab.go
@@ -397,7 +397,7 @@ func main() {
if host == "" {
u, err := url.Parse(GitlabHosted)
if err != nil {
- log.Fatalln("find token: %v", err)
+ log.Fatalf("find gitlab hostname: %v", err)
}
host = u.Host
}