summaryrefslogtreecommitdiff
path: root/src/op_mode/show_usb_serial.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/op_mode/show_usb_serial.py')
-rwxr-xr-xsrc/op_mode/show_usb_serial.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/op_mode/show_usb_serial.py b/src/op_mode/show_usb_serial.py
index 776898c25..973bf19c8 100755
--- a/src/op_mode/show_usb_serial.py
+++ b/src/op_mode/show_usb_serial.py
@@ -22,9 +22,9 @@ from sys import exit
OUT_TMPL_SRC = """Device Model Vendor
------ ------ ------
-{%- for d in devices %}
+{% for d in devices %}
{{ "%-16s" | format(d.device) }} {{ "%-19s" | format(d.model)}} {{d.vendor}}
-{%- endfor %}
+{% endfor %}
"""