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