On 1/13/07 3:09 PM, Fred C. Dobbs wrote:
I've synched to revision 4313, setup a project, added a line to the
urlpatterns to allow normal operation, and set Debug to False. Then I
fire up the builtin server and request a non-existent page. I expect a
"standard 404 page", but what I get is:

That's because with DEBUG = False, you need to create your own 404 template; since you haven't, you're getting a TemplateDoesNotExist exception.

If you're interested: the philosophy behind this is covered in the book: http://www.djangobook.com/en/beta/chapter20/#cn119

Jacob

--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to