From cd26a8fba4ebdfa589ed4e0832cdd580c98bc2a1 Mon Sep 17 00:00:00 2001 From: Trever Fischer Date: Sat, 25 Feb 2012 12:50:33 -0500 Subject: [PATCH] Default to news page as home --- urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/urls.py b/urls.py index d848afb..cc8a316 100644 --- a/urls.py +++ b/urls.py @@ -5,7 +5,7 @@ from django.contrib import admin admin.autodiscover() urlpatterns = patterns('', - url(r'^$', 'forums.views.index', name='home'), + url(r'^$', 'news.views.index', name='home'), url(r'^comments/', include('django.contrib.comments.urls')), url(r'^news/', include('news.urls')), url(r'^profiles/', include('profiles.urls')),