diff options
| author | Jannis Leidel <jannis@leidel.info> | 2013-02-23 14:59:51 +0100 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2013-02-23 14:59:51 +0100 |
| commit | 6bbf4e57c8b250d09a70d3d840531a42147705e9 (patch) | |
| tree | 0d193f17ffd6d817c5fb2bb9a1ccd421ca5fb741 | |
| parent | 67c39a64e018ee32b9c020615babea9b3ac7215f (diff) | |
Fixed embarrassing typo in last commit.
| -rw-r--r-- | django/contrib/staticfiles/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
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. |
