Fixed a simple TODO item in one error path of the "extends" tag.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@7085 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick 2008-02-04 04:57:56 +00:00
parent b9e088ae14
commit 0cdd65aa28
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ class ExtendsNode(Node):
if not parent:
error_msg = "Invalid template name in 'extends' tag: %r." % parent
if self.parent_name_expr:
error_msg += " Got this from the %r variable." % self.parent_name_expr #TODO nice repr.
error_msg += " Got this from the '%s' variable." % self.parent_name_expr.token
raise TemplateSyntaxError, error_msg
if hasattr(parent, 'render'):
return parent # parent is a Template object