Refs #33002 -- Renamed variable from bit to token_string in Lexer.tokenize().
This commit is contained in:
parent
6242c22a2f
commit
6fedd868e1
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue