From e35b8a49902f3217e8a7a41e900a24141ccaa8cb Mon Sep 17 00:00:00 2001 From: Mason Sedlik Date: Thu, 3 Sep 2026 15:34:37 -0400 Subject: [PATCH] Remove colon from end of URL --- command/oauth/cmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/oauth/cmd.go b/command/oauth/cmd.go index 655637c5..a0e87b2a 100644 --- a/command/oauth/cmd.go +++ b/command/oauth/cmd.go @@ -915,7 +915,7 @@ func (o *oauth) DoDeviceAuthorization() (*token, error) { fmt.Fprintf(os.Stderr, "Visit %s and enter the code:\n", idr.VerificationURI) fmt.Fprintln(os.Stderr, idr.UserCode) } else { - fmt.Fprintf(os.Stderr, "Visit %s:\n", idr.VerificationURI) + fmt.Fprintf(os.Stderr, "Visit %s\n", idr.VerificationURI) } // Poll the Token endpoint until the user completes the flow.