summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2006-09-02 09:40:59 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2006-09-02 09:40:59 +0000
commit46d7defb7de856b434bac77231c2ac708a3bc218 (patch)
tree1984e77c9bb77485d2a0a80e0665f074b631663e
parent826b9ff5e58ca7c16ef161258d2b5a8522effc6b (diff)
Refs #2333 - Removed a call to the signal dispatcher that was mistakenly merged in.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3709 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/template/__init__.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/django/template/__init__.py b/django/template/__init__.py
index abd46955ad..d49952afed 100644
--- a/django/template/__init__.py
+++ b/django/template/__init__.py
@@ -61,7 +61,6 @@ from django.template.context import Context, RequestContext, ContextPopException
from django.utils.functional import curry
from django.utils.text import smart_split
from django.dispatch import dispatcher
-from django.template import signals
__all__ = ('Template', 'Context', 'RequestContext', 'compile_string')
@@ -155,7 +154,6 @@ class Template(object):
def render(self, context):
"Display stage -- can be called many times"
- dispatcher.send(signal=signals.template_rendered, sender=self, template=self, context=context)
return self.nodelist.render(context)
def compile_string(template_string, origin):