From 6fedd868e1d50421204ea0c05cc8d2200dcb3cb0 Mon Sep 17 00:00:00 2001 From: Chris Jerdonek Date: Sun, 8 Aug 2021 23:49:09 -0400 Subject: [PATCH] Refs #33002 -- Renamed variable from bit to token_string in Lexer.tokenize(). --- django/template/base.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/django/template/base.py b/django/template/base.py index a3182ea704..2f30d5fe7a 100644 --- a/django/template/base.py +++ b/django/template/base.py @@ -354,10 +354,10 @@ class Lexer: in_tag = False lineno = 1 result = [] - for bit in tag_re.split(self.template_string): - if bit: - result.append(self.create_token(bit, None, lineno, in_tag)) - lineno += bit.count('\n') + for token_string in tag_re.split(self.template_string): + if token_string: + result.append(self.create_token(token_string, None, lineno, in_tag)) + lineno += token_string.count('\n') in_tag = not in_tag return result