inventory plugins: use f-strings (#9323)

* inventory plugins: use f-strings

* add changelog frag
This commit is contained in:
Alexei Znamensky 2024-12-23 23:02:30 +13:00 committed by GitHub
commit 1d8f0b2942
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 148 additions and 149 deletions

View file

@ -140,7 +140,7 @@ def _fetch_information(token, url):
headers={'X-Auth-Token': token,
'Content-type': 'application/json'})
except Exception as e:
raise AnsibleError("Error while fetching %s: %s" % (url, to_native(e)))
raise AnsibleError(f"Error while fetching {url}: {to_native(e)}")
try:
raw_json = json.loads(to_text(response.read()))
except ValueError:
@ -161,7 +161,7 @@ def _fetch_information(token, url):
def _build_server_url(api_endpoint):
return "/".join([api_endpoint, "servers"])
return f"{api_endpoint}/servers"
def extract_public_ipv4(server_info):