fix rate limit handling for OAuth APIs (#368)

This commit is contained in:
Mike Fährmann
2019-08-03 13:43:00 +02:00
parent f687052daf
commit f4bc75e854
4 changed files with 5 additions and 4 deletions

View File

@@ -127,6 +127,6 @@ class OAuth1API():
self.api_key = api_key
def request(self, url, method="GET", **kwargs):
kwargs["fatal"] = False
kwargs["fatal"] = None
kwargs["session"] = self.session
return self.extractor.request(url, method, **kwargs)