Skip to content

Commit

Permalink
* I put the quotes in the wrong place.
Browse files Browse the repository at this point in the history
  • Loading branch information
bgroff committed Jun 18, 2018
1 parent b74d678 commit f69f4e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions django_kala/django_kala/platforms/aws/documents.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ def get_document_url(self, document):
ClientMethod='get_object',
Params={
'Bucket': settings.S3_STORAGE_BUCKET,
'Key': 'media/documents/"{0}"'.format(document.uuid),
'ResponseContentDisposition': 'attachment; filename={0}'.format(document.name),
'Key': 'media/documents/{0}'.format(document.uuid),
'ResponseContentDisposition': 'attachment; filename="{0}"'.format(document.name),
}
)
return url
Expand Down

0 comments on commit f69f4e6

Please sign in to comment.