After upgrading to Django 1.2, I have weird URLs in my admin panel. They look like this:
http://example.com/admin/Nonelogout/
or
http://example.com/admin/Nonepassword_change/
What could happen during the migration and what do I need to fix?
I found in the django source that it is called root_path, but I have no idea where I can install it correctly or if I have to do it.
Part of my urls.py for admin looks like this:
(r'^admin/doc/', include('django.contrib.admindocs.urls')),
(r'^admin/', include(admin.site.urls)),
source
share