diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-04-14 21:24:08 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-04-14 21:29:44 +0200 |
commit | df045eca2f6c7a9257de5d32723d9ccc799346e5 (patch) | |
tree | babc4f0a9a6fe51bd0e9ee357a8618f02b08c20b /src/conf_mode/protocols_ospfv3.py | |
parent | c944188a7e220141207687d04db74eb3a3961e7a (diff) | |
download | vyos-1x-df045eca2f6c7a9257de5d32723d9ccc799346e5.tar.gz vyos-1x-df045eca2f6c7a9257de5d32723d9ccc799346e5.zip |
frr: T4353: fix Jinja2 linting errors
Diffstat (limited to 'src/conf_mode/protocols_ospfv3.py')
-rwxr-xr-x | src/conf_mode/protocols_ospfv3.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/protocols_ospfv3.py b/src/conf_mode/protocols_ospfv3.py index f8e733ba5..ee4eaf59d 100755 --- a/src/conf_mode/protocols_ospfv3.py +++ b/src/conf_mode/protocols_ospfv3.py @@ -142,7 +142,7 @@ def generate(ospfv3): if not ospfv3 or 'deleted' in ospfv3: return None - ospfv3['new_frr_config'] = render_to_string('frr/ospf6d.frr.tmpl', ospfv3) + ospfv3['new_frr_config'] = render_to_string('frr/ospf6d.frr.j2', ospfv3) return None def apply(ospfv3): |