実際に遭遇した例

Python

カテゴリー: エラー  閲覧数:291 配信日:2017-11-05 11:07


エラーメッセージ


Apacheログ
[error] [client 123.456.78.901] TypeError: 'dict_keys' object does not support indexing, referer

エラー発生箇所


▼index.py
lookup_key = item.attrib.keys()[0]


エラー修正内容


▼index.py
lookup_key = list(item.attrib.keys())[0]