From 7ff72b5909894504b2343419630ceb5a4a9cd421 Mon Sep 17 00:00:00 2001 From: Chris Jerdonek Date: Tue, 3 Aug 2021 11:50:08 -0400 Subject: [PATCH] Refs #32919 -- Added assertion for token start in Lexer.create_token(). This adds an assertion in the code path where the method would otherwise return None, which isn't allowed. --- django/template/base.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/django/template/base.py b/django/template/base.py index 5feafb5ef69..b96bb5e3b09 100644 --- a/django/template/base.py +++ b/django/template/base.py @@ -383,9 +383,9 @@ class Lexer: if block_content[:9] in ('verbatim', 'verbatim '): self.verbatim = 'end%s' % block_content return Token(TokenType.BLOCK, block_content, position, lineno) - elif token_start == COMMENT_TAG_START: - content = token_string[2:-2].strip() - return Token(TokenType.COMMENT, content, position, lineno) + assert token_start == COMMENT_TAG_START + content = token_string[2:-2].strip() + return Token(TokenType.COMMENT, content, position, lineno) else: return Token(TokenType.TEXT, token_string, position, lineno)