http://www.djangobook.com/en/beta/chapter10/
"Note that django.core.exceptions.ObjectDoesNotExist, which is the base class for all Django database API DoesNotExist exceptions, has silent_variable_failure = True. So if you’re using Django templates with Django model objects, any DoesNotExist exception will fail silently."
Whilst I'm developing I'd like to reverse this behaviour, i.e. silent_variable_failure = False. How do I make this change permanent whilst developing under django ?
Thanks, Nick