Remove 'assertion_type' from _generate_refresh_request_body. Fixes Issue 238.
Reviewed in https://codereview.appspot.com/7308075/
diff --git a/oauth2client/gce.py b/oauth2client/gce.py
index ad27588..c7fd7c1 100644
--- a/oauth2client/gce.py
+++ b/oauth2client/gce.py
@@ -58,9 +58,8 @@
"""
self.scope = util.scopes_to_string(scope)
- super(AppAssertionCredentials, self).__init__(
- 'ignored' # assertion_type is ignore in this subclass.
- )
+ # Assertion type is no longer used, but still in the parent class signature.
+ super(AppAssertionCredentials, self).__init__(None)
@classmethod
def from_json(cls, json):