thirdparty/google_appengine/lib/django/examples/urls.py
author David Anderson <david.jc.anderson@gmail.com>
Fri, 13 Mar 2009 18:22:01 +0000
changeset 1835 3f30b7b14c57
parent 109 620f9b141567
permissions -rwxr-xr-x
Fix indentation to match Melange/Google style.

from django.conf.urls.defaults import *

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