# HG changeset patch # User Madhusudan.C.S # Date 1257411303 -19800 # Node ID 290f372287070637d0fbd455a076fc2ffc460ad3 # Parent 1de2f4008a5d8a2d237b8a00d974a95ce8ec17dc Made a urls.py fix by adding ^$ to the home url mapper. diff -r 1de2f4008a5d -r 290f37228707 project/urls.py --- a/project/urls.py Thu Nov 05 14:20:58 2009 +0530 +++ b/project/urls.py Thu Nov 05 14:25:03 2009 +0530 @@ -18,7 +18,7 @@ # Blog & Admin urlpatterns = patterns( '', - url(r'', + url(r'^$', direct_to_template, {"template": "home.html"}, name='home'), (r'^feeds/(?P.*)/$', 'django.contrib.syndication.views.feed', {'feed_dict': feeds}),