Add language to output filename

This commit is contained in:
flyingscorpio@clevo 2023-01-23 13:49:35 +01:00
parent 18359fe9b0
commit e7744e9f5a
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View file

@ -5,4 +5,5 @@ __pycache__/
.env
data
out.html
out.*.html
out.pdf

View file

@ -15,7 +15,7 @@ def main() -> None:
files = {
"template": "out.html.j2",
"html_output": "out.html",
"html_output": f"out.{args.language}.html",
"css_file": "css/styles.css",
"pdf_output": "out.pdf",
"meta": "data/meta.json",