Django

Code

Changeset 3709

Show
Ignore:
Timestamp:
09/02/06 04:40:59 (2 years ago)
Author:
russellm
Message:

Refs #2333 - Removed a call to the signal dispatcher that was mistakenly merged in.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/template/__init__.py

    r3707 r3709  
    6262from django.utils.text import smart_split 
    6363from django.dispatch import dispatcher 
    64 from django.template import signals 
    6564 
    6665__all__ = ('Template', 'Context', 'RequestContext', 'compile_string') 
     
    156155    def render(self, context): 
    157156        "Display stage -- can be called many times" 
    158         dispatcher.send(signal=signals.template_rendered, sender=self, template=self, context=context) 
    159157        return self.nodelist.render(context) 
    160158