Fixed import error that was causing EggLoader tests not to be run
Also improved ImportError handling that was causing this fact to be missed. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16323 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
39005c2b84
commit
d41a25ebc6
|
@ -17,7 +17,6 @@ import os.path
|
|||
import warnings
|
||||
|
||||
from django.template import TemplateDoesNotExist, Context
|
||||
from django.template.loaders.eggs import load_template_source as lts_egg
|
||||
from django.template.loaders.eggs import Loader as EggLoader
|
||||
from django.template import loader
|
||||
from django.test.utils import get_warnings_state, restore_warnings_state
|
||||
|
|
|
@ -37,8 +37,11 @@ from response import *
|
|||
|
||||
try:
|
||||
from loaders import *
|
||||
except ImportError:
|
||||
pass # If setuptools isn't installed, that's fine. Just move on.
|
||||
except ImportError, e:
|
||||
if "pkg_resources" in e.message:
|
||||
pass # If setuptools isn't installed, that's fine. Just move on.
|
||||
else:
|
||||
raise
|
||||
|
||||
import filters
|
||||
|
||||
|
|
Loading…
Reference in New Issue