From 8602c84e1b7c0da4c4c57fc2d034ec18497303fd Mon Sep 17 00:00:00 2001 From: Alex W Date: Tue, 23 Apr 2024 18:07:18 +0100 Subject: T6255: static-routing: don't render whitespace from static table descriptions --- data/templates/iproute2/static.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/templates/iproute2/static.conf.j2 b/data/templates/iproute2/static.conf.j2 index 10c9bdab7..249483ab3 100644 --- a/data/templates/iproute2/static.conf.j2 +++ b/data/templates/iproute2/static.conf.j2 @@ -2,7 +2,7 @@ {% if table is vyos_defined %} {% for t, t_options in table.items() %} {% if t_options.description is vyos_defined %} -{{ "%-6s" | format(t) }} {{ "%-40s" | format(t_options.description) }} +{{ "%-6s" | format(t) }} {{ "%-40s" | format(t_options.description | replace(" ", "_")) }} {% endif %} {% endfor %} {% endif %} -- cgit v1.2.3