Skip to content

Commit d32cd63

Browse files
jonathasreuelchristopherseeley
authored andcommitted
Undeclared Variable Removal (#431)
The variable raw_input have no declaration, this was replaced by input.
1 parent 497a2e8 commit d32cd63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/adwords/authentication/generate_refresh_token.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def main(client_id, client_secret, scopes):
9898
print('Log into the Google Account you use to access your AdWords account '
9999
'and go to the following URL: \n%s\n' % auth_url)
100100
print('After approving the token enter the verification code (if specified).')
101-
code = raw_input('Code: ').strip()
101+
code = input('Code: ').strip()
102102

103103
try:
104104
flow.fetch_token(code=code)

0 commit comments

Comments
 (0)