diff options
author | Christian Breunig <christian@breunig.cc> | 2023-04-26 07:04:49 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-04-26 18:59:07 +0200 |
commit | 71e45dd1c4738b3aa72d2d10b73929bf9b14e41e (patch) | |
tree | 893c9b390927d17eaefe1a154e5175d989c6a5c1 /python | |
parent | 930f76cf88a4175d485bc4e2df4c149ea547b380 (diff) | |
download | vyos-1x-71e45dd1c4738b3aa72d2d10b73929bf9b14e41e.tar.gz vyos-1x-71e45dd1c4738b3aa72d2d10b73929bf9b14e41e.zip |
vrf: T5174: ensure no duplicate VNIs can be defined
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/template.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/vyos/template.py b/python/vyos/template.py index 06a292706..254a15e3a 100644 --- a/python/vyos/template.py +++ b/python/vyos/template.py @@ -44,6 +44,7 @@ def _get_environment(location=None): loader=loc_loader, trim_blocks=True, undefined=ChainableUndefined, + extensions=['jinja2.ext.loopcontrols'] ) env.filters.update(_FILTERS) env.tests.update(_TESTS) |