Django

Code

Changeset 721

Show
Ignore:
Timestamp:
09/29/05 10:06:53 (3 years ago)
Author:
adrian
Message:

Changed django.core.template_file to use absolute import for 'template' module

Files:

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 
    23from django.conf.settings import TEMPLATE_DIRS, TEMPLATE_FILE_EXTENSION 
    3 from template import TemplateDoesNotExist 
     4from django.core.template import TemplateDoesNotExist 
    45import os 
    56