Django

Code

Show
Ignore:
Timestamp:
05/29/08 08:11:23 (6 months ago)
Author:
russellm
Message:

Fixed #6430 -- Corrected the loading of templates from eggs, which was broken by the unicode merge. Thanks for the excellent report and patch, Juan Manuel Caicedo <juan.manuel.caicedo@gmail.com>.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/tests/regressiontests/templates/tests.py

    r7060 r7565  
    2020from unicode import unicode_tests 
    2121from context import context_tests 
     22 
     23from loaders import * 
     24 
    2225import filters 
    2326 
    2427# Some other tests we would like to run 
    2528__test__ = { 
    26         'unicode': unicode_tests, 
    27         'context': context_tests, 
     29    'unicode': unicode_tests, 
     30    'context': context_tests 
    2831} 
    2932