Commit 34263c67 authored by Baptiste Mispelon's avatar Baptiste Mispelon
Browse files

Moved the loader tags registration with the other builtins.

parent 51832c8a
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1354,3 +1354,4 @@ def add_to_builtins(module):

add_to_builtins('django.template.defaulttags')
add_to_builtins('django.template.defaultfilters')
add_to_builtins('django.template.loader_tags')
+1 −3
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@
# installed, because pkg_resources is necessary to read eggs.

from django.core.exceptions import ImproperlyConfigured
from django.template.base import Origin, Template, Context, TemplateDoesNotExist, add_to_builtins
from django.template.base import Origin, Template, Context, TemplateDoesNotExist
from django.conf import settings
from django.utils.module_loading import import_by_path
from django.utils import six
@@ -191,5 +191,3 @@ def select_template(template_name_list, dirs=None):
            continue
    # If we get here, none of the templates could be loaded
    raise TemplateDoesNotExist(', '.join(not_found))

add_to_builtins('django.template.loader_tags')