diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-05-01 20:46:44 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-05-01 20:47:07 +0200 |
commit | 5ec208ed9ee060f7c1a7707dc2369c83657196e8 (patch) | |
tree | 59419760dd18a2f65b621746910e9c2fa47d4edf /src/conf_mode/http-api.py | |
parent | f38ce741c2852e4eaeeaa23736960d9a717b600f (diff) | |
download | vyos-1x-5ec208ed9ee060f7c1a7707dc2369c83657196e8.tar.gz vyos-1x-5ec208ed9ee060f7c1a7707dc2369c83657196e8.zip |
http: api: T4353: fix Jinja2 linting errors
Diffstat (limited to 'src/conf_mode/http-api.py')
-rwxr-xr-x | src/conf_mode/http-api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/http-api.py b/src/conf_mode/http-api.py index 00f3d4f7f..4a7906c17 100755 --- a/src/conf_mode/http-api.py +++ b/src/conf_mode/http-api.py @@ -117,7 +117,7 @@ def generate(http_api): with open(api_conf_file, 'w') as f: json.dump(http_api, f, indent=2) - render(systemd_service, 'https/vyos-http-api.service.tmpl', http_api) + render(systemd_service, 'https/vyos-http-api.service.j2', http_api) return None def apply(http_api): |