87158c2
a064354
@@ -350,7 +350,10 @@
@asyncio.coroutine
def index(request):
- return web.Response(body=INDEX.encode('utf-8'))
+ return web.Response(
+ body=INDEX.encode('utf-8'),
+ content_type='text/html',
+ charset='utf-8')
LGTM!
Thanks! :)
Pull-Request has been merged by pingou