Fix oauth create (#1133)

This commit is contained in:
Ross Scroggs
2020-03-26 15:17:35 -07:00
committed by GitHub
parent d8bbf71c19
commit 30d480debc

View File

@@ -10104,7 +10104,7 @@ def doRequestOAuth(login_hint=None):
try:
creds = auth.oauth.Credentials.from_client_secrets_file(
client_secrets_file=client_secrets_file,
scopes=scopes,
scopes=list(scopes),
access_type='offline',
login_hint=login_hint,
credentials_file=GC_Values[GC_OAUTH2_TXT],