summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-04-27 12:27:19 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-04-27 12:27:19 +0000
commitf30ca6636b8c30e634d2a4d3af9f0c777d43a9b1 (patch)
tree2c5cd8badf018cbb0670f1f79ae1c30ed66a82f2 /django
parent54f11ee63c619b9348dbbb3b4493157442ddf6d8 (diff)
Minor tweak. Removed unnecessary argument default.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5105 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django')
-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 39ce074852..6478636889 100644
--- a/django/template/__init__.py
+++ b/django/template/__init__.py
@@ -201,7 +201,7 @@ class Lexer(object):
in_tag = not in_tag
return result
- def create_token(self, token_string, in_tag=False):
+ 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,