mirror of
https://github.com/django/django.git
synced 2025-07-18 16:49:13 +00:00
[1.0.X] Fixed #11130 -- Corrected code example in custom template tag doc. Thanks phyfus.
r10799 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10800 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
e6a6ce4f07
commit
1f5626d087
@ -543,7 +543,7 @@ for example::
|
|||||||
|
|
||||||
class FormatTimeNode(template.Node):
|
class FormatTimeNode(template.Node):
|
||||||
def __init__(self, date_to_be_formatted, format_string):
|
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
|
self.format_string = format_string
|
||||||
|
|
||||||
def render(self, context):
|
def render(self, context):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user