1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-17 01:22:19 +03:00

companion: Don't over-write all CredentialsError with generic one

This commit is contained in:
Athanasius 2021-04-12 12:38:23 +01:00
parent ca08339dfe
commit 0575c3ff43

View File

@ -387,6 +387,9 @@ class Auth(object):
return str(data_token.get('access_token'))
except CredentialsError:
raise
except Exception as e:
logger.exception(f"Frontier CAPI Auth: Can't get token for \"{self.cmdr}\"")
if r: