Django

Code

Changeset 771

Show
Ignore:
Timestamp:
10/04/05 08:34:59 (3 years ago)
Author:
adrian
Message:

Fixed #591 -- fixed typo in docs/templates_python.txt. Thanks, Boffbowsh

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/templates_python.txt

    r631 r771  
    268268    from django.core.template import Context 
    269269    import datetime 
    270     class TimeContext(template.Context): 
     270    class TimeContext(Context): 
    271271        def __init__(self, *args, **kwargs): 
    272272            Context.__init__(self, *args, **kwargs)