utf-8 encoding
error message
SyntaxError: Non-ASCII character '\xe2' in file nadira.py on line 63,
but no encoding declared;
see http://python.org/dev/peps/pep-0263/ for details
Must add utf-8 encoding on top of the file
# -*- coding: utf-8 -*-
import re
import os
Comments
Post a Comment