Django

Code

Changeset 5598

Show
Ignore:
Timestamp:
07/03/07 14:20:56 (1 year ago)
Author:
adrian
Message:

Fixed an error in a RequestContext? example in docs/templates_python.txt

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/templates_python.txt

    r5537 r5598  
    312312    def some_view(request): 
    313313        # ... 
    314         return RequestContext(request, { 
     314        c = RequestContext(request, { 
    315315            'foo': 'bar', 
    316316        }, [ip_address_processor]) 
     317                return t.render(c) 
    317318 
    318319Note::