thirdparty/google_appengine/lib/django/examples/urls.py
author Todd Larsen <tlarsen@google.com>
Fri, 29 Aug 2008 02:59:59 +0000
changeset 123 45d10b6af158
parent 109 620f9b141567
permissions -rwxr-xr-x
Fix an overlooked cut-and-paste error. Patch by: Todd Larsen Review by: to-be-reviewed

from django.conf.urls.defaults import *

urlpatterns = patterns('',
    (r'^$', 'examples.views.index'),
    (r'^hello/', include('examples.hello.urls')),
)