defaultnamehere / tinder-detective

Find your Facebook friends' Tinder profiles. Don't actually use this by the way that's weird. Not even in a good way.
MIT License
703 stars 60 forks source link

Non-ASCII character '\xf0' #11

Open matarrese opened 8 years ago

matarrese commented 8 years ago

python app.py Traceback (most recent call last): File "app.py", line 5, in import api File "/Users/antoniomatarrese/tinder-detective/api.py", line 69 SyntaxError: Non-ASCII character '\xf0' in file /Users/antoniomatarrese/tinder-detective/api.py on line 69, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details

krijoh92 commented 8 years ago

You can insert # -*- coding: utf-8 -*- on top of api.py and app.py and that would fix the problem :)

matarrese commented 8 years ago

@krijoh92 your solution is working