NameError: name 'xrange' is not defined, referer

エラー

エラーメッセージ

 状態:-  閲覧数:499  投稿日:2017-05-18  更新日:2017-05-18  
Apacheログ
[error] [client 123.456.78.901] NameError: name 'xrange' is not defined, referer: http://★★.jp/


エラー原因


Python 3.xではxrangeを使用不可
・rangeに統合されてなくなったため


エラー対応


xrangeをrangeへ修正

実際に遭遇した例

 閲覧数:232 投稿日:2017-05-18 更新日:2017-05-18 

エラーメッセージ


ブラウザ表示
Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, root@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

Apacheログ
[error] [client 123.456.78.901] NameError: name 'xrange' is not defined, referer: http://★★.jp/


エラー発生箇所


▼views/hello_template.tpl
% for i in xrange(count):



エラー修正内容


▼views/hello_template.tpl
% for i in range(count):



Unsupported response type: <class 'int'>

コメント投稿(ログインが必要)