summaryrefslogtreecommitdiff
path: root/src/op_mode/show_vrf.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/op_mode/show_vrf.py')
-rwxr-xr-xsrc/op_mode/show_vrf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/op_mode/show_vrf.py b/src/op_mode/show_vrf.py
index b6bb73d01..94358c6e4 100755
--- a/src/op_mode/show_vrf.py
+++ b/src/op_mode/show_vrf.py
@@ -23,9 +23,9 @@ from vyos.util import cmd
vrf_out_tmpl = """
VRF name state mac address flags interfaces
-------- ----- ----------- ----- ----------
-{%- for v in vrf %}
+{% for v in vrf %}
{{"%-16s"|format(v.ifname)}} {{ "%-8s"|format(v.operstate | lower())}} {{"%-17s"|format(v.address | lower())}} {{ v.flags|join(',')|lower()}} {{v.members|join(',')|lower()}}
-{%- endfor %}
+{% endfor %}
"""