We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df70cca commit e8e6c73Copy full SHA for e8e6c73
samples/groupssettings/groupsettings.py
@@ -37,7 +37,7 @@
37
import httplib2
38
from oauth2client.client import flow_from_clientsecrets
39
from oauth2client.file import Storage
40
-from oauth2client.tools import run
+from oauth2client.tools import run_flow
41
42
43
# CLIENT_SECRETS, name of a file containing the OAuth 2.0 information for this
@@ -155,7 +155,7 @@ def main(argv):
155
if credentials is None or credentials.invalid:
156
print('invalid credentials')
157
# Save the credentials in storage to be used in subsequent runs.
158
- credentials = run(FLOW, storage)
+ credentials = run_flow(FLOW, storage)
159
160
# Create an httplib2.Http object to handle our HTTP requests and authorize it
161
# with our good Credentials.
0 commit comments