Skip to content

Commit f1ee9f1

Browse files
authored
Correcting error
Correcting error from user input.
1 parent abd4bb8 commit f1ee9f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drive/driveapp/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
flow.redirect_uri = oauth2client.client.OOB_CALLBACK_URN
3333
authorize_url = flow.step1_get_authorize_url()
3434
print('Go to the following link in your browser: ' + authorize_url)
35-
code = input('Enter verification code: ').strip()
35+
code = raw_input('Enter verification code: ').strip()
3636
credentials = flow.step2_exchange(code)
3737

3838
# Create an authorized Drive API client.

0 commit comments

Comments
 (0)