From 6f07f717c0b3cb2a849fd3533abbdc943d41e76b Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 4 Oct 2005 13:34:59 +0000 Subject: [PATCH] Fixed #591 -- fixed typo in docs/templates_python.txt. Thanks, Boffbowsh git-svn-id: http://code.djangoproject.com/svn/django/trunk@771 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/templates_python.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/templates_python.txt b/docs/templates_python.txt index 63b734dc44..39b768429b 100644 --- a/docs/templates_python.txt +++ b/docs/templates_python.txt @@ -267,7 +267,7 @@ every template automatic access to the current time, use something like this:: from django.core.template import Context import datetime - class TimeContext(template.Context): + class TimeContext(Context): def __init__(self, *args, **kwargs): Context.__init__(self, *args, **kwargs) self['current_time'] = datetime.datetime.now()