SyntaxError: Non-ASCII character '\xec' in file oncall-bot.py on line 50, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
이 에러는 한글 때문에 발생한 것이다. mac에는 문제 없으나 linux에서 발생했다.
code에 utf-8 인코딩 설정을 추가하니 더 이상 문제가 발생하지 않는다.
# -*- coding: utf-8 -*-
'python' 카테고리의 다른 글
[python] str과 repr 비교 (0) | 2018.01.23 |
---|---|
[python] datetime 예제 (0) | 2017.11.20 |
python -m json tool - json 예쁘게 출력할 대 유용한 툴 (0) | 2017.10.31 |
jinja2.exceptions.UndefinedError: 'dict object' has no attribute 'iteritems' 에러 해결 (0) | 2017.10.11 |
virtualenv 셋팅하는 방법(python3) (0) | 2017.10.10 |