From 58ad185e04067ff9fd835ce71b86140cef209b72 Mon Sep 17 00:00:00 2001 From: Sanj Date: Wed, 29 Jun 2011 22:25:21 +0530 Subject: [PATCH] um, remember to start url regexps with ^ --- edgware/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edgware/urls.py b/edgware/urls.py index b21315a..544223c 100644 --- a/edgware/urls.py +++ b/edgware/urls.py @@ -27,7 +27,7 @@ urlpatterns = patterns('', # (r'^admin/doc/', include('django.contrib.admindocs.urls')), (r'^comments/', include('django.contrib.comments.urls')), (r'^edit/', include('editor.urls')), - (r'files/', include('files.urls')), + (r'^files/', include('files.urls')), # (r'^gallery/', 'files.views.gallery'), # Uncomment the next line to enable the admin: (r'^admin/', include(admin.site.urls)),