From 2a572dcffa653fd1900d02f43722490db3a07ace Mon Sep 17 00:00:00 2001 From: "Bradley M. Kuhn" Date: Mon, 14 Jul 2014 12:08:53 -0400 Subject: [PATCH] Fix regression introduced in commit early today. 6a2918c288c26ed1503365ded9ceb2f52a7b7d09 introduced a removal of this line. This line is necessary for the front page to work. --- www/conservancy/urls.py | 1 + 1 file changed, 1 insertion(+) diff --git a/www/conservancy/urls.py b/www/conservancy/urls.py index 4b7e2a5e..7b4e50a5 100644 --- a/www/conservancy/urls.py +++ b/www/conservancy/urls.py @@ -26,6 +26,7 @@ handler404 = 'modpythoncustom.view404' admin.autodiscover() urlpatterns = patterns('', + (r'^$', 'conservancy.frontpage.view'), (r'^admin/doc/', include('django.contrib.admindocs.urls')), (r'^admin/(.*)', admin.site.urls), (r'^feeds/blog/?$', BlogFeed()),