From b254dac2fb1430016615c3a6d47ac74c1a844e50 Mon Sep 17 00:00:00 2001 From: Jan Szejko Date: Tue, 26 Apr 2016 16:40:13 +0200 Subject: [PATCH] fix attachment download --- contact/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.20.1