Changeset 721
- Timestamp:
- 09/29/05 10:06:53 (3 years ago)
- Files:
-
- django/trunk/django/core/template_file.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/core/template_file.py
r640 r721 1 "Wrapper for loading templates from files" 1 # Wrapper for loading templates from files 2 2 3 from django.conf.settings import TEMPLATE_DIRS, TEMPLATE_FILE_EXTENSION 3 from template import TemplateDoesNotExist4 from django.core.template import TemplateDoesNotExist 4 5 import os 5 6
