Django:The translation infrastructure cannot be initialized before the apps registry is ready

来源:互联网 发布:上海弘历软件 编辑:程序博客网 时间:2024/04/23 15:39

The translation infrastructure cannot be initialized before the apps registry is ready


在nginx+uwsgi环境下运行django时,按照古老的教程来写出现了错误,错误出现在wsgi.py中,做如下修改:
from django.core.wsgi import get_wsgi_applicationapplication = get_wsgi_application()
而不是之前的WSGIHandler
0 0