I'm trying to use passenger_wsgi on Dreamhost and keeep getting 'An error occurred importing your passenger_wsgi.py'. I think I've located the syntax that is causing the problem but I don't know how to resolve it and Dreamhost doesn't offer any assistance for this.
import sys, os INTERP = "/home/USERNAME/local/bin/python2.4" if sys.executable != INTERP: os.execl(INTERP, INTERP, *sys.argv) sys.path.append("/home/USERNAME/mysite.com") os.environ['DJANGO_SETTINGS_MODULE'] = 'mysite.settings' import django.core.handlers.wsgi # THIS LINE CAUSING ERRORS # application = django.core.handlers.wsgi.WSGIHandler() Thanks for any help, Jason --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---