summaryrefslogtreecommitdiff
path: root/django/views/static.py
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-11-24 22:41:05 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-11-24 22:41:05 +0000
commit18c7ed74e4fbdde9cb839a4031b8683053d97952 (patch)
treeb1fff8e9b0385c9713282838468689223bcd93c3 /django/views/static.py
parent827ebe53686d4fce3b37241969b717df2e864f3d (diff)
Fixed #896 -- Fixed error in filesystem serve view in Windows. Thanks, Petar Marić and nesh
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1402 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/views/static.py')
-rw-r--r--django/views/static.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/views/static.py b/django/views/static.py
index 28e43ec612..4ff4313dab 100644
--- a/django/views/static.py
+++ b/django/views/static.py
@@ -34,7 +34,7 @@ def serve(request, path, document_root=None, show_indexes=False):
if part in (os.curdir, os.pardir):
# strip '.' amd '..' in path
continue
- newpath = os.path.join(newpath, part)
+ newpath = os.path.join(newpath, part).replace('\\', '/')
if newpath and path != newpath:
return HttpResponseRedirect(newpath)
fullpath = os.path.join(document_root, newpath)