From d7b2dcf66f16a1295613ad5fc1abb8e6c2ad66ee Mon Sep 17 00:00:00 2001 From: Dmitry Tantsur Date: Wed, 18 Sep 2024 13:35:07 +0200 Subject: [PATCH] Trivial: fix variable in formatting Change-Id: I6af5e6d2c4781c24345d456cec4d77c364ae2da5 --- ironic_python_agent/ironic_api_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ironic_python_agent/ironic_api_client.py b/ironic_python_agent/ironic_api_client.py index 2959c0b09..2d7179ad8 100644 --- a/ironic_python_agent/ironic_api_client.py +++ b/ironic_python_agent/ironic_api_client.py @@ -281,7 +281,7 @@ class APIClient(object): 'node is locked. We will wait %(time)s seconds before trying ' 'again. %(err)s', {'time': self.lookup_lock_pause, - 'error': self._error_from_response(response)} + 'err': self._error_from_response(response)} ) time.sleep(self.lookup_lock_pause) return False