lint errors fixed

This commit is contained in:
sirferl 2020-12-02 16:05:34 +01:00
parent 9b2ac32d70
commit a0517d26fa
1 changed files with 8 additions and 9 deletions

View File

@ -351,10 +351,10 @@ class EntrustSourcePlugin(SourcePlugin):
def get_certificates(self, options, **kwargs): def get_certificates(self, options, **kwargs):
""" Fetch all Entrust certificates """ """ Fetch all Entrust certificates """
base_url = current_app.config.get("ENTRUST_URL") base_url = current_app.config.get("ENTRUST_URL")
host = base_url.replace('/enterprise/v2','') host = base_url.replace('/enterprise/v2', '')
get_url = f"{base_url}/certificates" get_url = f"{base_url}/certificates"
certs =[] certs = []
offset = 0 offset = 0
while True: while True:
response = self.session.get(get_url, response = self.session.get(get_url,
@ -372,7 +372,7 @@ class EntrustSourcePlugin(SourcePlugin):
data = {'response': 'No detailed message'} data = {'response': 'No detailed message'}
status_code = response.status_code status_code = response.status_code
if status_code > 399: if status_code > 399:
raise Exception(f"ENTRUST error: {msg.get(status_code, status_code)}\n{data['errors']}") raise Exception(f"ENTRUST error: {status_code}\n{data['errors']}")
# current_app.logger.info(f"recevied: {data['summary']}") # current_app.logger.info(f"recevied: {data['summary']}")
for c in data["certificates"]: for c in data["certificates"]:
download_url = "{0}{1}".format( download_url = "{0}{1}".format(
@ -396,7 +396,6 @@ class EntrustSourcePlugin(SourcePlugin):
current_app.logger.info(f"Result: {certs}") current_app.logger.info(f"Result: {certs}")
return certs return certs
def get_endpoints(self, options, **kwargs): def get_endpoints(self, options, **kwargs):
# There are no endpoints in ENTRUST # There are no endpoints in ENTRUST
raise NotImplementedError("Not implemented\n", self, options, **kwargs) raise NotImplementedError("Not implemented\n", self, options, **kwargs)