jinja2.exceptions.UndefinedError: 'dict object' has no attribute 'iteritems' 에러 해결
python 2017. 10. 11. 15:08python3로 마이그레이션 하던 중에 다음과 같은 에러를 만났다.
{%- for hostname, stat in stat.iteritems() %}
jinja2.exceptions.UndefinedError: 'dict object' has no attribute 'iteritems'
python3의 dict 클래스의 iteritems는 items로 변경되었다.
'python' 카테고리의 다른 글
SyntaxError: Non-ASCII character '\xec' in file 해결 (0) | 2017.11.07 |
---|---|
python -m json tool - json 예쁘게 출력할 대 유용한 툴 (0) | 2017.10.31 |
virtualenv 셋팅하는 방법(python3) (0) | 2017.10.10 |
fatal error: Python.h: No such file or directory #include "Python.h" 해결하기 (0) | 2017.10.10 |
[python3] ++ 연산자 (0) | 2017.09.28 |