Hello, I am having this import error "ImportError at /
No module named models"
Please let me what I can do to fix this. My customer is pretty angry that I cannot deliver the site today. I just migrated my services to pythonanywhere, hoping that I will get the best service for my bucks... I hope this is resolvable. I am using mezzanine to build my apps and this specific app was manyally imported. I appended the project dir to all my import modules as well
here is my wsgi file
+++++++++++ DJANGO +++++++++++
import os import sys path = '/home/myaccount/' sys.path.append(path) path = '/home/myaccount/my_project_dir/' sys.path.append(path) os.environ['DJANGO_SETTINGS_MODULE'] = 'my_project_dir.settings' import django.core.handlers.wsgi application = django.core.handlers.wsgi.WSGIHandler()