Skip to content

Commit

Permalink
fix(login): Use the correct name in login message (#868)
Browse files Browse the repository at this point in the history
  • Loading branch information
setu4993 authored Jul 19, 2024
1 parent 5bc7838 commit ef0a7bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dataquality/core/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ def login_with_token(self) -> None:
webbrowser.open(token_url)
except Exception:
pass
print(f"Go to {token_url} to generate a new API Key")
access_token = getpass.getpass("🔐 Enter your API Key:")
print(f"Go to {token_url} to generate a new Galileo token.")
access_token = getpass.getpass("🔐 Enter your Galileo token: ")
config.token = access_token
config.update_file_config()

Expand Down

0 comments on commit ef0a7bc

Please sign in to comment.