summaryrefslogtreecommitdiff
path: root/docs/templates_python.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-10-04 13:34:59 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-10-04 13:34:59 +0000
commit6f07f717c0b3cb2a849fd3533abbdc943d41e76b (patch)
tree0ff590075efa42be6ebf39b551bd77056689db31 /docs/templates_python.txt
parentda715287171bcbfd3068f0711e7b4eb95f827b6d (diff)
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
Diffstat (limited to 'docs/templates_python.txt')
-rw-r--r--docs/templates_python.txt2
1 files changed, 1 insertions, 1 deletions
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()