diff --git a/disco/api/client.py b/disco/api/client.py index 9edd424..58e6fd5 100644 --- a/disco/api/client.py +++ b/disco/api/client.py @@ -121,7 +121,7 @@ class APIClient(LoggingClass): r = self.http(Routes.OAUTH2_TOKEN, data=payload) return AccessToken.create(self.client, r.json()) - def oauth_token_revoke(self, token): + def oauth2_token_revoke(self, token): self.http(Routes.OAUTH2_TOKEN_REVOKE, data={ 'client_id': self.client.state.me.id, 'client_secret': self.client.config.secret,