From 5f516a7dd4fffdbc29370f3ba958064e7d714a30 Mon Sep 17 00:00:00 2001 From: Luke Date: Mon, 28 Oct 2019 02:28:03 +0000 Subject: [PATCH] Consistency fix --- disco/api/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,