X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/314942a5f688d8d484ecc5d79cf9ec2a6826e95b..b254dac2fb1430016615c3a6d47ac74c1a844e50:/contact/views.py?ds=sidebyside 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)