From 46d7defb7de856b434bac77231c2ac708a3bc218 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Sat, 2 Sep 2006 09:40:59 +0000 Subject: [PATCH] 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 --- django/template/__init__.py | 2 -- 1 file changed, 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):