From f30ca6636b8c30e634d2a4d3af9f0c777d43a9b1 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Fri, 27 Apr 2007 12:27:19 +0000 Subject: [PATCH] Minor tweak. Removed unnecessary argument default. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5105 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/template/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,