Skip to content

Commit

Permalink
Merge pull request #200 from dethwalker/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
kootenpv authored Mar 31, 2021
2 parents d7cdbf9 + 213a3f3 commit f8fae67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yagmail/oauth2.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ def get_oauth2_info(oauth2_file):
print("If you do not have an app registered for your email sending purposes, visit:")
print("https://console.developers.google.com")
print("and create a new project.\n")
email_addr = getpass.getpass("Your 'email address': ")
google_client_id = getpass.getpass("Your 'google_client_id': ")
email_addr = input("Your 'email address': ")
google_client_id = input("Your 'google_client_id': ")
google_client_secret = getpass.getpass("Your 'google_client_secret': ")
google_refresh_token, _, _ = get_authorization(google_client_id, google_client_secret)
oauth2_info = {
Expand Down

0 comments on commit f8fae67

Please sign in to comment.