Skip to content

Commit

Permalink
* The key is already the full path.
Browse files Browse the repository at this point in the history
  • Loading branch information
bgroff committed Nov 1, 2018
1 parent bcb85ec commit 5c75d74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_kala/django_kala/platforms/aws/documents.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def get_export_url(self, export):
ClientMethod='get_object',
Params={
'Bucket': settings.S3_STORAGE_BUCKET,
'Key': 'exports/{0}'.format(export.details['Key']),
'Key': '{0}'.format(export.details['Key']),
'ResponseContentDisposition': 'attachment; filename="{0}"'.format(export.name),
}
)
Expand Down

0 comments on commit 5c75d74

Please sign in to comment.