+ href="{{pm_with_url}}"
+ title="{{#tr}}Narrow to your private messages with {display_reply_to}{{/tr}}">
{{#tr}}You and {display_reply_to}{{/tr}}
diff --git a/tools/check-templates b/tools/check-templates
index 053dc4f243..d3809a1417 100755
--- a/tools/check-templates
+++ b/tools/check-templates
@@ -145,19 +145,10 @@ def check_handlebar_templates(templates: Iterable[str], fix: bool) -> None:
# Check all our handlebars templates.
templates = [fn for fn in templates if fn.endswith(".hbs")]
- IGNORE_FILES = [
- # TODO: Add some exclude mechanism for the line-wrapping issue here.
- "static/templates/recipient_row.hbs",
- ]
-
for fn in templates:
- if fn in IGNORE_FILES:
- continue
validate(fn=fn, check_indent=True)
for fn in templates:
- if fn in IGNORE_FILES:
- continue
if not validate_indent_html(fn, fix):
sys.exit(1)