Re: Custom site model uses the wrong manager

2011-06-28 Thread Briehan Lombaard
It seems to be using the Site model (and therefore the SiteManager) from django.contrib.sites even though dhango.contrib.sites is _not_ included in my INSTALLED_APPS setting and I'm explicitly importing myapp.sites.models.Site. -- You received this message because you are subscribed to the Goo

Custom site model uses the wrong manager

2011-06-28 Thread briehan
We have a custom 'sites framework' implementation that basically consists of a Site model and SiteManager. For some reason, when running the app, the Site model uses the SiteManager from django.contrib.sites instead of our own. I did the following from within the app: from myapp.sites.models impo