1

我按照可用的教程将我的代码从 python 2.5 转换为 2.7,但是我遇到了许多错误,这可以在我运行代码时生成的这个日志文件中看到。请帮我解决这些错误

 File "C:\Program Files\Google\google_appengine\google\appengine\runtime\wsgi.py", line 269,    in _LoadHandler
      raise ImportError('%s has no attribute %s' % (handler, name))
ImportError: <module 'main' from 'C:\Users\Anjali\Desktop\malbee-phish\main.py'> has no attribute app
BadStatusLine("''",)
BadStatusLine("''",)
4

1 回答 1

0

我假设你设置了threadsafe: true. 这仅在您的应用程序使用 WSGI 时才有效。将您的应用程序转换为使用 WSGI(首选)或设置threadsafe: false

您可能还必须更改您的应用程序以使用webapp2.

于 2013-04-28T22:09:03.200 回答