mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-24 08:16:51 -04:00
Addressing a test
This commit is contained in:
@@ -682,4 +682,4 @@ def slugify(text):
|
|||||||
"""
|
"""
|
||||||
Converts text to lowercase, replaces spaces with hyphens, and removes invalid characters.
|
Converts text to lowercase, replaces spaces with hyphens, and removes invalid characters.
|
||||||
"""
|
"""
|
||||||
return re.sub(r'[^a-z0-9-]', '', re.sub(r'\s+', '-', text.lower()))
|
return re.sub(r"[^a-z0-9-]", "", re.sub(r"\s+", "-", text.lower()))
|
||||||
|
|||||||
@@ -685,9 +685,8 @@ def _is_latin1(s):
|
|||||||
|
|
||||||
|
|
||||||
def _get_content_count_error_and_message_for_template(template):
|
def _get_content_count_error_and_message_for_template(template):
|
||||||
url = "https://en.wikipedia.org/wiki/ISO/IEC_8859-1"
|
|
||||||
if template.template_type == "sms":
|
if template.template_type == "sms":
|
||||||
s1 = f"<html><body>Templates won't save with these characters ™ ∞ • – ≠ “ ‘ … ≤ ≥ or any emoji present. "
|
s1 = "<html><body>Templates won't save with these characters ™ ∞ • – ≠ “ ‘ … ≤ ≥ or any emoji present. "
|
||||||
s2 = "<br>The errors they create lead to texts displaying incorrectly on older mobile phones.</body></html>"
|
s2 = "<br>The errors they create lead to texts displaying incorrectly on older mobile phones.</body></html>"
|
||||||
|
|
||||||
warning = ""
|
warning = ""
|
||||||
|
|||||||
Reference in New Issue
Block a user