We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fda4959 commit 564b29bCopy full SHA for 564b29b
drive/driveapp/main.py
@@ -7,16 +7,17 @@
7
8
from __future__ import print_function
9
import pprint
10
+import sys
11
import httplib2
12
from googleapiclient.discovery import build
13
import googleapiclient.http
14
import oauth2client.client
-import sys
15
+
16
17
# Checking Python version to avoid input errors
18
if sys.version_info<(3,5,0):
- sys.stderr.write("You need python 3.x or later to run this script\n")
19
- exit(1)
+ sys.stderr.write("You need python 3.x or later to run this script\n")
20
+ exit(1)
21
22
# OAuth 2.0 scope that will be authorized.
23
# Check https://developers.google.com/drive/scopes for all available scopes.
0 commit comments