Trivial: fix variable in formatting

Change-Id: I6af5e6d2c4781c24345d456cec4d77c364ae2da5
(cherry picked from commit d7b2dcf66f)
This commit is contained in:
Dmitry Tantsur 2024-09-18 13:35:07 +02:00
parent 06fe5ff178
commit 349c9d39fe

View File

@ -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