From 3f42eb86d2c5c6e86ee598110f5c67ea17c2945a Mon Sep 17 00:00:00 2001 From: Ross Scroggs Date: Mon, 17 Apr 2017 15:54:14 -0700 Subject: [PATCH] Fix typo (#482) --- src/gam.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gam.py b/src/gam.py index 5d015706..d1a49099 100755 --- a/src/gam.py +++ b/src/gam.py @@ -6665,7 +6665,7 @@ def doDelProjects(login_hint=None): def doCreateProject(login_hint=None): - def _checkClientAndSecret(simplehttp, client_id, secret): + def _checkClientAndSecret(simplehttp, client_id, client_secret): url = u'https://www.googleapis.com/oauth2/v4/token' post_data = {u'client_id': client_id, u'client_secret': client_secret, u'code': u'ThisIsAnInvalidCodeOnlyBeingUsedToTestIfClientAndSecretAreValid',