Fixing missing interpolation variable
This commit is contained in:
parent
a6605c9c6f
commit
2f329f832e
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ def dup_check(module, iam, name, new_name, cert, orig_cert_names, orig_cert_bodi
|
||||||
elif orig_cert_bodies[c_index] != cert:
|
elif orig_cert_bodies[c_index] != cert:
|
||||||
module.fail_json(changed=False, msg='A cert with the name %s already exists and'
|
module.fail_json(changed=False, msg='A cert with the name %s already exists and'
|
||||||
' has a different certificate body associated'
|
' has a different certificate body associated'
|
||||||
' with it. Certificates cannot have the same name')
|
' with it. Certificates cannot have the same name' % i_name)
|
||||||
else:
|
else:
|
||||||
update=True
|
update=True
|
||||||
break
|
break
|
||||||
|
|
Loading…
Reference in a new issue