Skip to content

Commit 5612f19

Browse files
lsv1christopherseeley
authored andcommitted
raw_input() is now input() as of Python3 (#432)
1 parent d32cd63 commit 5612f19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/ad_manager/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 Ad Manager 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)