Added a getFromKeyNameOr404 to base.Logic
This also fixes a bug introduced in r2437 where this method was used
although it didn't exist yet.
Patch by: Sverre Rabbelier
from django.conf.urls.defaults import *urlpatterns = patterns('', (r'^$', 'examples.views.index'), (r'^hello/', include('examples.hello.urls')),)