Hi

This error started to show up on single page after the 2007-11-12
version of files in django/template/

Exception Value:        'Context' object has no attribute 'push'
Exception Location:     /usr/lib/python2.4/site-packages/django/template/
loader_tags.py in render, line 19


from debug:

Traceback (most recent call last):
File "/usr/lib/python2.4/site-packages/django/template/__init__.py" in
render_node
  810. result = node.render(context)
File "/usr/lib/python2.4/site-packages/django/template/loader_tags.py"
in render
  19. context.push()

The context.push is there allright:

File "/usr/lib/python2.4/site-packages/django/template/context.py:

class Context(object):
    "A stack container for variable context"
    def __init__(self, dict_=None):
        dict_ = dict_ or {}
        self.dicts = [dict_]

    [...]

    def push(self):
        self.dicts = [{}] + self.dicts

    [...]

Can anyone jump to conclusion?



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

Reply via email to