From 28b1317fd815325b5a58a7acae12ca45de5a6ac9 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 21 Aug 2013 10:49:50 -0400 Subject: [PATCH] [1.6.x] Fixed #20949 -- Typo #2 in docstring Backport of 0073f1d94f from master --- django/template/loader_tags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/template/loader_tags.py b/django/template/loader_tags.py index a330c42a37..85ffcf17bb 100644 --- a/django/template/loader_tags.py +++ b/django/template/loader_tags.py @@ -206,7 +206,7 @@ def do_extends(parser, token): uses the literal value "base" as the name of the parent template to extend, or ``{% extends variable %}`` uses the value of ``variable`` as either the name of the parent template to extend (if it evaluates to a string) or as - the parent tempate itself (if it evaluates to a Template object). + the parent template itself (if it evaluates to a Template object). """ bits = token.split_contents() if len(bits) != 2: