diff options
-rw-r--r-- | pyfunkwhale/client.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pyfunkwhale/client.py b/pyfunkwhale/client.py index bebb271..7343e94 100644 --- a/pyfunkwhale/client.py +++ b/pyfunkwhale/client.py @@ -113,6 +113,8 @@ class Client(object): Check if the token is expired in 60 seconds and if True will ask a new token from the instance. """ + if self.token is None: + raise InvalidTokenError(self) if time() - 60 > self.token["expires_at"]: try: self.token = self.oauth_client.refresh_token( |