Skip to content

Commit 564b29b

Browse files
authored
Update main.py
1 parent fda4959 commit 564b29b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

drive/driveapp/main.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,17 @@
77

88
from __future__ import print_function
99
import pprint
10+
import sys
1011
import httplib2
1112
from googleapiclient.discovery import build
1213
import googleapiclient.http
1314
import oauth2client.client
14-
import sys
15+
1516

1617
# Checking Python version to avoid input errors
1718
if sys.version_info<(3,5,0):
18-
sys.stderr.write("You need python 3.x or later to run this script\n")
19-
exit(1)
19+
sys.stderr.write("You need python 3.x or later to run this script\n")
20+
exit(1)
2021

2122
# OAuth 2.0 scope that will be authorized.
2223
# Check https://developers.google.com/drive/scopes for all available scopes.

0 commit comments

Comments
 (0)