Fixed #9199 -- We were erroneously only prepending "www" to the domain if we
[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')),