Added some better error reporting and path handling when creating template paths.
[django.git] / examples / urls.py
blob69b465f65dc1cd9094e5eaf2589b15bbb5538117
1 from django.conf.urls.defaults import *
3 urlpatterns = patterns('',
4 (r'^$', 'examples.views.index'),
5 (r'^hello/', include('examples.hello.urls')),