Fixed #1291 -- Fixed a potential infinite loop for some URL constructions in
[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')),