Rectify traceback.format_exc() call (#25773)

Fix adds correct call to traceback.format_exc method

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
Abhijeet Kasurde 2017-06-16 21:08:36 +05:30 committed by Sloane Hertel
parent 820c99c90b
commit 6bc1e802e3

View file

@ -272,7 +272,7 @@ class CloudFrontServiceManager:
return self.paginated_response(func)
except botocore.exceptions.ClientError as e:
self.module.fail_json(msg="Error describing distribution configuration - " + str(e),
exception=traceback.format_exec(e),
exception=traceback.format_exc(),
**camel_dict_to_snake_dict(e.response))
def get_origin_access_identity(self, origin_access_identity_id):