diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-05-01 20:15:38 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-05-01 20:15:38 +0200 |
commit | e3c657e9f4d85b691ad9e95d302d4c209e1386fa (patch) | |
tree | a8e610609f9b93696e4efabadc29f6835561dda4 /src/conf_mode/system_lcd.py | |
parent | 5271cf5bfec263b993692f7110478ea10864893f (diff) | |
download | vyos-1x-e3c657e9f4d85b691ad9e95d302d4c209e1386fa.tar.gz vyos-1x-e3c657e9f4d85b691ad9e95d302d4c209e1386fa.zip |
lcd: T4353: fix Jinja2 linting errors
Diffstat (limited to 'src/conf_mode/system_lcd.py')
-rwxr-xr-x | src/conf_mode/system_lcd.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/conf_mode/system_lcd.py b/src/conf_mode/system_lcd.py index b5ce32beb..3341dd738 100755 --- a/src/conf_mode/system_lcd.py +++ b/src/conf_mode/system_lcd.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright 2020 VyOS maintainers and contributors <maintainers@vyos.io> +# Copyright 2020-2022 VyOS maintainers and contributors <maintainers@vyos.io> # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 or later as @@ -61,9 +61,9 @@ def generate(lcd): lcd['device'] = find_device_file(lcd['device']) # Render config file for daemon LCDd - render(lcdd_conf, 'lcd/LCDd.conf.tmpl', lcd) + render(lcdd_conf, 'lcd/LCDd.conf.j2', lcd) # Render config file for client lcdproc - render(lcdproc_conf, 'lcd/lcdproc.conf.tmpl', lcd) + render(lcdproc_conf, 'lcd/lcdproc.conf.j2', lcd) return None |