Alexander Lebedev
Results
1
comments of
Alexander Lebedev
try to add content type 'text/html' in your http response; it helped me to solve this issue in my django-project: ``` python return HttpResponse('', content_type='text/html') ```