Hi, I'm not sure what I've done wrong but I get the following error if I visit any url but "/".
================================================================ Environment: Request Method: GET Request URL: http://fusion-gospel/test Django Version: 1.1 beta 1 SVN-10658 Python Version: 2.5.2 Installed Applications: ['django.contrib.contenttypes', 'django.contrib.sites', 'fusion_gospel.fusion'] Installed Middleware: ('django.middleware.common.CommonMiddleware',) Traceback: File "/usr/lib/python2.5/site-packages/django/core/handlers/base.py" in get_response 83. request.path_info) Exception Type: TypeError at test Exception Value: 'NoneType' object is not iterable ================================================================ and urls.py: =============================================================== from django.conf.urls.defaults import * urlpatterns = patterns('fusion_gospel.fusion.views', (r'^$', 'main'), (r'^swap/(?P<slug>[-\w]+)/(?P<trans>[-\w]+)/(?P<book>mt|mk|lk|jn)/ $', 'swap'), ) =============================================================== I don't get 404s for other urls, just the above error message. Any ideas? Thanks :) --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---