mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-02-04 07:51:50 +00:00
modules a*: use f-strings (#10942)
* modules a*: use f-strings * add changelog frag * add changelog frag * rename chglof frag file
This commit is contained in:
parent
0feabaa7da
commit
d86340b9d3
22 changed files with 219 additions and 214 deletions
|
|
@ -245,7 +245,7 @@ class AnsibleGalaxyInstall(ModuleHelper):
|
|||
line = out.splitlines()[0]
|
||||
match = self._RE_GALAXY_VERSION.match(line)
|
||||
if not match:
|
||||
self.do_raise("Unable to determine ansible-galaxy version from: {0}".format(line))
|
||||
self.do_raise(f"Unable to determine ansible-galaxy version from: {line}")
|
||||
version = match.group("version")
|
||||
return version
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue