Closed arcticicestudio closed 7 years ago
@teslaji You can checkout :seedling: bugfix/gh-20-syntaxerror-non-ascii-character to test if this fixes your problem.
Same issue here, resolved by this fix
@kbuley Thanks for the feedback, already forgot to submit a PR for this one in the flood of issue notifications each day :smile:
I'll add the magic comment to all other files to make sure the encoding is always UTF-8 and merge it as soon as possible.
The exception is thrown by the non ASCII character
❄
used in thecli.py
log message. Regarding to PEP-263 the default encoding is set to ASCII, but the file must be parsed as UTF-8.This can be fixed by adding the magic comment
# -*- coding: utf-8 -*-
.