>>> # django_wsgi.py
>>>
>>>     import os
>>>     import sys
>>>     import site
>>>
>>>     import django.core.handlers.wsgi
>>>     from django.conf import settings
>>>
>>>     os.environ['DJANGO_SETTINGS_MODULE'] = '<project>.settings'
>>>
>>>     PROJECT_PATH = getattr(settings, 'PROJECT_PATH')
>>>
>>>     sys.path.append(PROJECT_PATH)
>>>     site.addsitedir(os.path.join(PROJECT_PATH,
>>> '/ve/lib/python2.6/site-packages'))
>>>
>>>     application = django.core.handlers.wsgi.WSGIHandler()
>>>     applications = {'':'application', }
>>
>>                           ^^^^^^^^^^^^
>> Shouldn't this be a callable and not a string?
>
> Thanks, Obviously that should point to the callable application
> variable . I believe earlier versions must have done some magic or
> looked for a variable called 'application', since it worked up to the
> 0.9.6.8.
>
> Thanks again,
> Simon.
>

This is a serious flaw in LTS ugrade procedure (something you would have
received a refund for, under commercial support). Breaking past-features
must not happen in LTS, so i will fix it ASAP.

Sorry for the headache, expect an update (even if probably you no more 
need it) in a couple of hours.

-- 
Roberto De Ioris
http://unbit.it
_______________________________________________
uWSGI mailing list
[email protected]
http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi

Reply via email to