Author: Manos Pitsidianakis [manos@pitsidianak.is]
Hash: 430cbdfd42c2bfd717c42568d10919ea27735869
Timestamp: Tue, 18 Jun 2024 14:42:26 +0000 (2 months ago)

+1 -2 +/-1 browse
scripts/make_html_manual_page.py: fix python errors
scripts/make_html_manual_page.py: fix python errors

Signed-off-by: Manos Pitsidianakis <manos@pitsidianak.is>
1diff --git a/scripts/make_html_manual_page.py b/scripts/make_html_manual_page.py
2index 52a76aa..41d76e5 100644
3--- a/scripts/make_html_manual_page.py
4+++ b/scripts/make_html_manual_page.py
5 @@ -252,7 +252,6 @@ if __name__ == "__main__":
6 )
7 parser.add_argument(
8 "--no-css",
9- type=bool,
10 help="don't prepend <style> element",
11 required=False,
12 action="store_true",
13 @@ -342,7 +341,7 @@ if __name__ == "__main__":
14 )
15 url_ = url.replace("%N", name).replace("%S", section)
16 try:
17- got = give_me_head(url_, name, section)
18+ got = give_me_head(url_)
19 if got:
20 link["href"] = got
21 found = True