diff --git a/apps/api/plane/utils/content_validator.py b/apps/api/plane/utils/content_validator.py index 7b9932a35b9..26b99e5f6a2 100644 --- a/apps/api/plane/utils/content_validator.py +++ b/apps/api/plane/utils/content_validator.py @@ -191,7 +191,7 @@ def validate_html_content(html_content): try: # Count opening and closing tags for basic structure validation opening_tags = re.findall(r"<(\w+)[^>]*>", html_content) - closing_tags = re.findall(r"", html_content) + closing_tags = re.findall(r"", html_content) # Filter out self-closing tags from opening tags opening_tags_filtered = [