This is a django project.
I have a simple view with 1 line in it : render_to_response('index.html'). And this index.html contains characters like "öüä" which trigger the error 'utf8' codec can't decode bytes in position 1942-1944: invalid data .
This is straightforward error which kind of says that it can't decode because this is not utf8 , yet i can't understand how to fix it . Where exactly should i specify something .
Any suggestions ?