Remove celery code line

This commit is contained in:
Roberto Rosario
2012-02-05 00:51:31 -04:00
parent 9c03663924
commit 4d546f7415

View File

@@ -2,9 +2,13 @@ import os
import sys
import site
from django.core.handlers.wsgi import WSGIHandler
sys.stdout = sys.stderr
ve_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..', 'lib/python2.6/site-packages'))
#TODO fix properly
ve_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..', 'lib/python2.7/site-packages')) # Change python 2.6 to the python version you are using
# Add the virtual Python environment site-packages directory to the path
site.addsitedir(ve_path)
@@ -16,7 +20,5 @@ sys.path.insert(0, ve_path)
# Avoid ``[Errno 13] Permission denied: '/var/www/.python-eggs'`` messages
os.environ['PYTHON_EGG_CACHE'] = '/tmp'
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
os.environ['CELERY_LOADER'] = 'django'
from django.core.handlers.wsgi import WSGIHandler
application = WSGIHandler()