From 6bbf4e57c8b250d09a70d3d840531a42147705e9 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Sat, 23 Feb 2013 14:59:51 +0100 Subject: [PATCH] Fixed embarrassing typo in last commit. --- django/contrib/staticfiles/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/contrib/staticfiles/views.py b/django/contrib/staticfiles/views.py index 4264d9b42c..f5c42fedf8 100644 --- a/django/contrib/staticfiles/views.py +++ b/django/contrib/staticfiles/views.py @@ -17,7 +17,7 @@ from django.views import static from django.contrib.staticfiles import finders -def serve(request, path insecure=False, **kwargs): +def serve(request, path, insecure=False, **kwargs): """ Serve static files below a given point in the directory structure or from locations inferred from the staticfiles finders.