Skip to content

Commit 0963d9c

Browse files
committed
🐛 Fix login url not linked correctly
When having a small terminal width, the url would be going to two lines, and then it would be impossible to CTRL+click it and get the correct link.
1 parent 160b50f commit 0963d9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fastapi_cloud_cli/commands/login.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def login() -> Any:
8787

8888
url = authorization_data.verification_uri_complete
8989

90-
progress.log(f"Opening {url}")
90+
progress.log(f"Opening [link={url}]{url}[/link]")
9191

9292
toolkit.print_line()
9393

0 commit comments

Comments
 (0)