On Nov 18, 12:26 am, Josh <
wheaties....@gmail.com> wrote:
> That is quite a strange problem you've encountered. Would you mind
> sharing what version of Django and which OS you're using? Or, perhaps
> before we get into any of that, do you have the following lines in
> your main urls.py file?
>
> from django.contrib import admin
> admin.autodiscover()
Django 1.0.1, Python 2.5.1, Linux, pretty standard. Here is my entire
urls.py:
from django.conf.urls.defaults import *
# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()
import pendulum.admin
from django.conf.urls.defaults import *
urlpatterns = patterns('',
(r'^admin/(.*)', admin.site.root),
(r'^pendulum/', include('pendulum.urls')),
)
It's not a big deal, it does work :-)
--Nicholas