#2645: [patch] template error handler has an error
-----------------------------+----------------------------------------------
Reporter: [EMAIL PROTECTED] | Owner: adrian
Type: defect | Status: new
Priority: normal | Milestone:
Component: Template system | Version: SVN
Severity: normal | Keywords:
-----------------------------+----------------------------------------------
django/template/__init__.py (revision 3709) arroundline 439 has a little
typo resulting in broken error handling. This is the fix:
{{{
- raise TemplateSyntaxError, "Searching for value.
Unexpected end of string in column %d: %s" % subject
+ raise TemplateSyntaxError, "Searching for value.
Unexpected end of string in column %d: %s" % (i, subject)
}}}
You can get a real diff at http://c0re.23.nu/c0de/misc/django-3709-
template-error-error.diff
Regards
Maximillian Dornseif
--
Ticket URL: <http://code.djangoproject.com/ticket/2645>
Django <http://code.djangoproject.org/>
The web framework for perfectionists with deadlines.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---