From b67ff14208049e90310c4c312036116ee620c295 Mon Sep 17 00:00:00 2001
From: Alex Gaynor <alex.gaynor@gmail.com>
Date: Tue, 7 Jun 2011 21:17:41 +0000
Subject: [PATCH] Removed an alias for ``django.template.loader`` that had been
 deprecated since 2005. This should only affect World Online.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16337 bcc190cf-cafb-0310-a4f2-bffc1f526a37
---
 django/core/template_loader.py | 7 -------
 docs/releases/1.4.txt          | 7 +++++++
 2 files changed, 7 insertions(+), 7 deletions(-)
 delete mode 100644 django/core/template_loader.py

diff --git a/django/core/template_loader.py b/django/core/template_loader.py
deleted file mode 100644
index ee86178cc1..0000000000
--- a/django/core/template_loader.py
+++ /dev/null
@@ -1,7 +0,0 @@
-# This module is DEPRECATED!
-#
-# You should no longer be using django.template_loader.
-#
-# Use django.template.loader instead.
-
-from django.template.loader import *
diff --git a/docs/releases/1.4.txt b/docs/releases/1.4.txt
index d0c02b0036..bddb15cd3e 100644
--- a/docs/releases/1.4.txt
+++ b/docs/releases/1.4.txt
@@ -277,3 +277,10 @@ enforce protection on everything.
 
 If you using PUT or DELETE methods in AJAX applications, please see the
 :ref:`instructions about using AJAX and CSRF <csrf-ajax>`.
+
+``django.core.template_loaders``
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+This was an alias to ``django.template.loader`` since 2005, it has been removed
+without emitting a warning due to the length of the deprecation. If your code
+still referenced this please use ``django.template.loader`` instead.
\ No newline at end of file