diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-05-01 20:23:51 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-05-01 20:23:51 +0200 |
commit | 4400d11709a86fddf63a98cadc4241776afa3e35 (patch) | |
tree | 45c1fa9f857054ad852f7d877e655f9ef14945d2 /src | |
parent | 1b80aec26798ebfbbfd257d3899c074d7d65ebb0 (diff) | |
download | vyos-1x-4400d11709a86fddf63a98cadc4241776afa3e35.tar.gz vyos-1x-4400d11709a86fddf63a98cadc4241776afa3e35.zip |
nhrp: T4353: fix Jinja2 linting errors
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/protocols_nhrp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/protocols_nhrp.py b/src/conf_mode/protocols_nhrp.py index ff8ae8eeb..92b335085 100755 --- a/src/conf_mode/protocols_nhrp.py +++ b/src/conf_mode/protocols_nhrp.py @@ -84,7 +84,7 @@ def verify(nhrp): return None def generate(nhrp): - render(opennhrp_conf, 'nhrp/opennhrp.conf.tmpl', nhrp) + render(opennhrp_conf, 'nhrp/opennhrp.conf.j2', nhrp) return None def apply(nhrp): |