summaryrefslogtreecommitdiff
path: root/src/op_mode/dynamic_dns.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/op_mode/dynamic_dns.py')
-rwxr-xr-xsrc/op_mode/dynamic_dns.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/op_mode/dynamic_dns.py b/src/op_mode/dynamic_dns.py
index 021acfd73..962943896 100755
--- a/src/op_mode/dynamic_dns.py
+++ b/src/op_mode/dynamic_dns.py
@@ -26,13 +26,13 @@ from vyos.util import call
cache_file = r'/run/ddclient/ddclient.cache'
OUT_TMPL_SRC = """
-{%- for entry in hosts -%}
+{% for entry in hosts %}
ip address : {{ entry.ip }}
host-name : {{ entry.host }}
last update : {{ entry.time }}
update-status: {{ entry.status }}
-{% endfor -%}
+{% endfor %}
"""
def show_status():