From: Jan Szejko Date: Tue, 26 Apr 2016 14:40:13 +0000 (+0200) Subject: fix attachment download X-Git-Url: https://git.mdrn.pl/edumed.git/commitdiff_plain/b254dac2fb1430016615c3a6d47ac74c1a844e50?ds=inline fix attachment download --- diff --git a/contact/views.py b/contact/views.py index 243b8fc..4d5a40f 100644 --- a/contact/views.py +++ b/contact/views.py @@ -57,5 +57,5 @@ def thanks(request, form_tag): @permission_required('contact.change_attachment') def attachment(request, contact_id, tag): attachment = get_object_or_404(Attachment, contact_id=contact_id, tag=tag) - attachment_url = unquote(attachment.file.url).decode('utf-8') + attachment_url = unquote(attachment.file.url) return serve_file(attachment_url)