Skip to content

Commit

Permalink
Merge pull request #74 from ehenneken/aws_fix
Browse files Browse the repository at this point in the history
bugfix
  • Loading branch information
ehenneken committed Nov 16, 2016
2 parents bdc4e17 + 363f566 commit 2f54b4a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions service/aws_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def get_boto_session():
:return: boto3.session instance
"""
return Session(
aws_access_key_id=current_app.config.get('AWS_ACCESS_KEY'),
aws_secret_access_key=current_app.config.get('AWS_SECRET_KEY'),
region_name=current_app.config.get('AWS_REGION')
aws_access_key_id=current_app.config.get('GRAPHICS_AWS_ACCESS_KEY'),
aws_secret_access_key=current_app.config.get('GRAPHICS_AWS_SECRET_KEY'),
region_name=current_app.config.get('GRAPHICS_AWS_REGION')
)

0 comments on commit 2f54b4a

Please sign in to comment.