Hi,
Anyone got this problem?

I try to run grappelli on django 1.3. and run this command :

#python manage.py runserver

Server running. Withouth grappeli, I can go to django admin page. But
after install grappelli, and try to access  http://127.0.0.1/admin/
error appear 'Python quite unexpectedly'.

I try both on python 2.5 and python 2.6, got the same error.

For additional info, below is my url.py
=== url.py =====================================
from django.conf.urls.defaults import patterns, include, url

from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',

    (r'^admin/', include(admin.site.urls)),
     (r'^grappelli/', include('grappelli.urls')),
)
===============================

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to