Django

Code

Changeset 5161

Show
Ignore:
Timestamp:
05/07/07 21:48:38 (1 year ago)
Author:
mtredinnick
Message:

Fixed #4202 -- Corrected namespacing of exception in one of the examples.
Thanks, luftyluft@gmail.com.

Files:

Legend:

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

    r5137 r5161  
    867867                actual_date = resolve_variable(self.date_to_be_formatted, context) 
    868868                return actual_date.strftime(self.format_string) 
    869             except VariableDoesNotExist: 
     869            except template.VariableDoesNotExist: 
    870870                return '' 
    871871