summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-04-28 13:31:44 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-04-28 13:31:44 +0000
commitc675ee76126c349f9410635815eb76c2e5c47582 (patch)
tree5d8dbdf6a161ee0504169a718d539cef4cf93f67
parent4ac69165f822a42bbcba45698a15c1c403cc4305 (diff)
Fixed #4180 -- Fixed docstring typo noticed by Gary Wilson.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5117 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/template/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/template/__init__.py b/django/template/__init__.py
index 7f6056d73c..4cb4f21156 100644
--- a/django/template/__init__.py
+++ b/django/template/__init__.py
@@ -204,7 +204,7 @@ class Lexer(object):
def create_token(self, token_string, in_tag):
"""
Convert the given token string into a new Token object and return it.
- If tag is True, we are processing something that matched a tag,
+ If in_tag is True, we are processing something that matched a tag,
otherwise it should be treated as a literal string.
"""
if in_tag: