[re2o_lookup] Fix typo in log message.

certbot_on_virtu
_pollion 2020-05-17 19:05:22 +02:00
parent 011e743635
commit 3436590acf
1 changed files with 2 additions and 2 deletions

View File

@ -673,8 +673,8 @@ class LookupModule(LookupBase):
if res is not None:
display.vvv("Found {} in cache.".format(endpoint))
else:
display.v("Making a raw query {host}/api/{endpoint}"
.format(host=self.api_hostname, endpoint=endpoint))
display.v("Making a raw query to {host}/api/{endpoint}"
.format(host=self._api_hostname, endpoint=endpoint))
res = api_client.list(endpoint)
display.vvv("Storing result in cache.")
self._set_cache(endpoint.replace('/', '_'), res)