thirdparty/google_appengine/lib/django/examples/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Mon, 02 Mar 2009 21:56:30 +0000
changeset 1596 834ead6528a8
parent 109 620f9b141567
permissions -rwxr-xr-x
Fixed a missing .logic in organization Patch by: Sverre Rabbelier

from django.conf.urls.defaults import *

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