thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Thu, 09 Apr 2009 22:04:47 +0000
changeset 2137 3d5692ae414c
parent 109 620f9b141567
permissions -rwxr-xr-x
If nothing is assigned, return no assignments Before the popularity was returned instead. Patch by: Sverre Rabbelier

from django.conf.urls.defaults import *

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