Rectify traceback.format_exc() call (#25773)

Fix adds correct call to traceback.format_exc method

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
pull/23342/merge
Abhijeet Kasurde 8 years ago committed by Sloane Hertel
parent 820c99c90b
commit 6bc1e802e3

@ -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):

Loading…
Cancel
Save