mirror of
https://github.com/ansible-collections/community.crypto.git
synced 2026-05-07 22:03:01 +00:00
Replace % and str.format() with f-strings (#875)
* Replace % and str.format() with f-strings. * Apply suggestions from review.
This commit is contained in:
@@ -414,9 +414,7 @@ def main():
|
||||
)
|
||||
if profile not in meta_profiles:
|
||||
raise ModuleFailException(
|
||||
msg="The ACME CA does not support selected profile {0!r}.".format(
|
||||
profile
|
||||
)
|
||||
msg=f"The ACME CA does not support selected profile {profile!r}."
|
||||
)
|
||||
|
||||
order = None
|
||||
|
||||
Reference in New Issue
Block a user