This commit is contained in:
Daniel Wallace 2014-07-28 20:41:21 -05:00
parent 44401243b0
commit 88792c67bd

View File

@ -236,7 +236,7 @@ def _instance_profile_associated(
ret['comment'] = 'Instance profile {0} associated.'.format(name)
else:
ret['result'] = False
msg = 'Failed to associate {0} instance profile with {1} role.'
msg = 'Failed to associate {0} instance profile with {0} role.'
ret['comment'] = msg.format(name)
return ret
@ -499,6 +499,6 @@ def _instance_profile_disassociated(
ret['comment'] = msg
else:
ret['result'] = False
msg = 'Failed to disassociate {0} instance profile from {1} role.'
msg = 'Failed to disassociate {0} instance profile from {0} role.'
ret['comment'] = msg.format(name)
return ret