After upgrading to Django 1.2 I have strange urls in my administration panel. They look like this:
http://example.com/admin/Nonelogout/
or
http://example.com/admin/Nonepassword_change/
What might have gone wrong during the migration and what I need to fix?
I have found in django source, that it is caused by root_path, but I have no idea, where I can set it properly or whether should I even do it.
Part of my urls.py for admin look like this:
(r'^admin/doc/', include('django.contrib.admindocs.urls')),
# (r'^admin/(.*)', admin.site.root),
(r'^admin/', include(admin.site.urls)),