Skip to content
This repository has been archived by the owner on Sep 24, 2024. It is now read-only.

Commit

Permalink
HOTFIX: Print error when no AWS Credentials were found
Browse files Browse the repository at this point in the history
  • Loading branch information
tioxy committed Aug 9, 2018
1 parent 4960f1e commit b7eb90c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion panoptes/aws/authentication.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ def get_client(region, profile):
except Exception:
client = None
error = (
"ERROR - Was not possible authenticating at AWS, "
"ERROR - Panoptes could not authenticate to AWS, "
"check if your credentials exist and work."
)
print(error)
# Log variable error here
return client

Expand Down

0 comments on commit b7eb90c

Please sign in to comment.