cannot import other apps' models from writers.py
I have an app whose models and views resides in my site's project directory (in contrast to askbot, which resides in /usr/lib/...). When I try import its models from an askbot's writers.py as follows:
from myapp import models
I get this error:
ImproperlyConfigured: Error importing middleware askbot.middleware.view_log: "cannot import name models"
Any hints on what may be causing this error or how to debug it?
Comments