Skip to content

Commit

Permalink
Minor tweak. Removed unnecessary argument default.
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5105 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
malcolmt committed Apr 27, 2007
1 parent 54f11ee commit f30ca66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/template/__init__.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def tokenize(self):
in_tag = not in_tag in_tag = not in_tag
return result 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. 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 tag is True, we are processing something that matched a tag,
Expand Down

0 comments on commit f30ca66

Please sign in to comment.