SyntaxError Django is already raising what you are in the right direction.
It is always useful to read exceptions. In your case, he would say something in the lines
The non-ASCII character '\ xc3' in the file /home/zakx/../views.py on line 84, but no encoding is declared; See http://www.python.org/peps/pep-0263.html (views.py, line 84) for more information.
If you then read PEP-0263 , you might find out that there are some ways to tell Python (and your editor!) That encode your files. Typically, you will want to use UTF-8 encoding whenever possible. Therefore, writing one of the following lines to the first line (or, secondly, if you use shebang), Python will use UTF-8 for this file.
# coding=utf8
source share