From dbde1770f3f8cd16727bd974d39697af2f902f3b Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Wed, 1 Dec 2010 00:40:31 +0100 Subject: [PATCH] really empty url too --- pandora/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora/urls.py b/pandora/urls.py index 5062caf18..3aeff6a49 100644 --- a/pandora/urls.py +++ b/pandora/urls.py @@ -39,6 +39,6 @@ if settings.DEBUG: ) urlpatterns += patterns('', (r'^[A-Z0-9].*$', 'app.views.index'), - (r'$', 'app.views.index'), + (r'^$', 'app.views.index'), )