From 92e5249a677c1c60d2a13ad0203716840fc71143 Mon Sep 17 00:00:00 2001 From: Karen Tracey Date: Sun, 17 May 2009 16:31:02 +0000 Subject: [PATCH] Fixed #11130 -- Corrected code example in custom template tag doc. Thanks phyfus. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10799 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/howto/custom-template-tags.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/howto/custom-template-tags.txt b/docs/howto/custom-template-tags.txt index f5aa47d7d4..c6f76772de 100644 --- a/docs/howto/custom-template-tags.txt +++ b/docs/howto/custom-template-tags.txt @@ -543,7 +543,7 @@ for example:: class FormatTimeNode(template.Node): def __init__(self, date_to_be_formatted, format_string): - self.date_to_be_formatted = Variable(date_to_be_formatted) + self.date_to_be_formatted = template.Variable(date_to_be_formatted) self.format_string = format_string def render(self, context):