Skip to content

Commit

Permalink
Fix missing exception string cast
Browse files Browse the repository at this point in the history
  • Loading branch information
beatro0t committed Sep 18, 2020
1 parent 28dafc0 commit 599fcc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/aws/ingestor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 599fcc4

Please sign in to comment.