Skip to content

Commit

Permalink
Fixed bug in [1443] -- Missing Context import in django.core.template…
Browse files Browse the repository at this point in the history
….loader

git-svn-id: http://code.djangoproject.com/svn/django/trunk@1446 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Nov 26, 2005
1 parent adef71d commit c83fa94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/core/template/loader.py
Expand Up @@ -21,7 +21,7 @@
# installed, because pkg_resources is necessary to read eggs.

from django.core.exceptions import ImproperlyConfigured
from django.core.template import Origin, StringOrigin, Template, TemplateDoesNotExist, add_to_builtins
from django.core.template import Origin, StringOrigin, Template, Context, TemplateDoesNotExist, add_to_builtins
from django.conf.settings import TEMPLATE_LOADERS, TEMPLATE_DEBUG

template_source_loaders = []
Expand Down

0 comments on commit c83fa94

Please sign in to comment.