summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--patchwork/views/patch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/patchwork/views/patch.py b/patchwork/views/patch.py
index 5d772fd..7449571 100644
--- a/patchwork/views/patch.py
+++ b/patchwork/views/patch.py
@@ -154,7 +154,7 @@ def patch_mbox(request, project_id, msgid):
patch = get_object_or_404(Patch, project_id=project.id, msgid=db_msgid)
series_id = request.GET.get('series')
- response = HttpResponse(content_type='text/plain')
+ response = HttpResponse(content_type='text/plain; charset=utf-8')
if series_id:
if not patch.series:
raise Http404('Patch does not have an associated series. This is '