We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c871ce commit f9cf390Copy full SHA for f9cf390
1 file changed
apps_script/quickstart/quickstart.py
@@ -19,6 +19,7 @@
19
project, and log the script's URL to the user.
20
"""
21
from __future__ import print_function
22
+from apiclient import errors
23
from apiclient.discovery import build
24
from httplib2 import Http
25
from oauth2client import file, client, tools
@@ -35,7 +36,7 @@
35
36
# Call the Apps Script API
37
try:
38
# Create a new project
- request = {'title': 'My Script'}
39
+ request = {'title2': 'My Script'}
40
response = service.projects().create(body=request).execute()
41
42
# Upload two files to the project
0 commit comments