diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-09-04 23:49:14 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-09-04 23:49:14 +0000 |
| commit | b7a352d78fdd6608e770992b787a560e2e79438e (patch) | |
| tree | 06c405383b13be3ea3bb6fd6278a902215b8ed4f /django/views/static.py | |
| parent | 8f79523b6292c8039c05a4c5530ce3bd3b31c934 (diff) | |
Changed template names from [3707] to remove initial caps, to fit our style.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3718 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/views/static.py')
| -rw-r--r-- | django/views/static.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/views/static.py b/django/views/static.py index a8c8328014..3ec4ca14a1 100644 --- a/django/views/static.py +++ b/django/views/static.py @@ -81,7 +81,7 @@ def directory_index(path, fullpath): try: t = loader.get_template('static/directory_index') except TemplateDoesNotExist: - t = Template(DEFAULT_DIRECTORY_INDEX_TEMPLATE, name='Default Directory Index Template') + t = Template(DEFAULT_DIRECTORY_INDEX_TEMPLATE, name='Default directory index template') files = [] for f in os.listdir(fullpath): if not f.startswith('.'): |
