From 599fcc441fb27abb26999cec6b5e3e0a37234567 Mon Sep 17 00:00:00 2001 From: Craig Koorn <12154702+beatro0t@users.noreply.github.com> Date: Fri, 18 Sep 2020 11:30:31 +0200 Subject: [PATCH] Fix missing exception string cast --- lib/aws/ingestor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/aws/ingestor.py b/lib/aws/ingestor.py index d325970..f64f68f 100644 --- a/lib/aws/ingestor.py +++ b/lib/aws/ingestor.py @@ -56,7 +56,7 @@ def __init__(self, session, console=None, self.console.spacer() except (ClientError, PartialCredentialsError, ProfileNotFound) as e: - self.console.error(e) + self.console.error(str(e)) sys.exit(1) if len(only_arns) > 0: