From 3436590acf64125e39edecf3233e5663952bf612 Mon Sep 17 00:00:00 2001 From: Bombar Maxime Date: Sun, 17 May 2020 19:05:22 +0200 Subject: [PATCH] [re2o_lookup] Fix typo in log message. --- lookup_plugins/re2oapi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lookup_plugins/re2oapi.py b/lookup_plugins/re2oapi.py index baf2f416..5a71d06b 100644 --- a/lookup_plugins/re2oapi.py +++ b/lookup_plugins/re2oapi.py @@ -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)