Fix exception message in AWS lambda module

pull/4420/head
Ryan S. Brown 2018-06-19 10:11:02 -04:00
parent 6a620a1ed9
commit a5ec29ed49
1 changed files with 2 additions and 2 deletions

View File

@ -277,8 +277,8 @@ def set_tag(client, module, tags, function):
try:
current_tags = client.list_tags(Resource=arn).get('Tags', {})
except ClientError as e:
module.fail_json(msg="Unable to list tags: {0}".format(to_native(e),
exception=traceback.format_exc()))
module.fail_json(msg="Unable to list tags: {0}".format(to_native(e)),
exception=traceback.format_exc())
tags_to_add, tags_to_remove = compare_aws_tags(current_tags, tags, purge_tags=True)