[re2o_lookup] Fix typo in log message.
parent
011e743635
commit
3436590acf
|
@ -673,8 +673,8 @@ class LookupModule(LookupBase):
|
||||||
if res is not None:
|
if res is not None:
|
||||||
display.vvv("Found {} in cache.".format(endpoint))
|
display.vvv("Found {} in cache.".format(endpoint))
|
||||||
else:
|
else:
|
||||||
display.v("Making a raw query {host}/api/{endpoint}"
|
display.v("Making a raw query to {host}/api/{endpoint}"
|
||||||
.format(host=self.api_hostname, endpoint=endpoint))
|
.format(host=self._api_hostname, endpoint=endpoint))
|
||||||
res = api_client.list(endpoint)
|
res = api_client.list(endpoint)
|
||||||
display.vvv("Storing result in cache.")
|
display.vvv("Storing result in cache.")
|
||||||
self._set_cache(endpoint.replace('/', '_'), res)
|
self._set_cache(endpoint.replace('/', '_'), res)
|
||||||
|
|
Loading…
Reference in New Issue