this is a followup question to Remove default apps from Django-admin
I am trying t remove Sites from my admin site and I call
as was suggested.
admin.site.unregister(Site)
Iam getting an error saying that Site is not registered. Apparently my admin.py is called before the Site model is registered. Is there a cleaner way to accomplish what I need?
thanks konstantin