thirdparty/google_appengine/lib/django/examples/urls.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Sat, 22 Nov 2008 18:15:58 +0000
changeset 558 8c6f80ab34e5
parent 109 620f9b141567
permissions -rwxr-xr-x
Fix wrong comment format in request.py. Patch by: Pawel Solyga

from django.conf.urls.defaults import *

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