diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-12-10 10:03:01 +0900 |
---|---|---|
committer | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-12-10 10:03:01 +0900 |
commit | 1d36459069ee0d7010b363757b03a99be2f3450a (patch) | |
tree | 74ab71cd7bd37624aaffafffeeb0befdf31f8e4e | |
parent | 99c7c9d417d2510d1aeb83bb005c1fee64b31e81 (diff) |
myhtml: add missing <body> for summary
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
-rwxr-xr-x | scripts/myhtml.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/myhtml.py b/scripts/myhtml.py index d395cb8..e0f35b5 100755 --- a/scripts/myhtml.py +++ b/scripts/myhtml.py @@ -254,7 +254,8 @@ class periject_html(base.base): # ------- # # ------- - self.__summary(dir, self.top() + "/" + dir, find.find([dir]).get()) + with html("body"): + self.__summary(dir, self.top() + "/" + dir, find.find([dir]).get()) #-------------------- # menu_wiki |