Add language to output filename
This commit is contained in:
parent
18359fe9b0
commit
e7744e9f5a
2 changed files with 2 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -5,4 +5,5 @@ __pycache__/
|
|||
.env
|
||||
data
|
||||
out.html
|
||||
out.*.html
|
||||
out.pdf
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue