Author: russellm
Date: 2006-09-02 04:40:59 -0500 (Sat, 02 Sep 2006)
New Revision: 3709

Modified:
   django/trunk/django/template/__init__.py
Log:
Refs #2333 - Removed a call to the signal dispatcher that was mistakenly merged 
in.


Modified: django/trunk/django/template/__init__.py
===================================================================
--- django/trunk/django/template/__init__.py    2006-09-02 09:34:40 UTC (rev 
3708)
+++ django/trunk/django/template/__init__.py    2006-09-02 09:40:59 UTC (rev 
3709)
@@ -61,7 +61,6 @@
 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 @@
 
     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):


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-updates
-~----------~----~----~----~------~----~------~--~---

Reply via email to