diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-10-02 13:24:16 +0900 |
---|---|---|
committer | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-10-02 13:24:16 +0900 |
commit | 30f268e1b4b04f325a77fd19296875892b064855 (patch) | |
tree | 8a7b6f0e1dfdcdbbe7e1994e5e34056f85f3a6d7 | |
parent | bb27e72045c4edf2601d6abf75b01e788e0c1b5e (diff) |
html.py: use existing relpath_y2h() at bsp()
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
-rwxr-xr-x | scripts/html.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/html.py b/scripts/html.py index 537ee52..388d194 100755 --- a/scripts/html.py +++ b/scripts/html.py @@ -583,7 +583,7 @@ class periject_html(base.base): cnt_all += 1 with html("tr"): a.option({"href": - os.path.relpath(file.replace("yaml", "html").replace("projects", "html"), "{}/html".format(self.top()))}) + self.relpath_y2h(file, "{}/html".format(self.top()))}) html("td").print(a.text(os.path.basename(file).replace(".yaml", ""))) with html("td"): |