diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-10-30 14:06:10 +0900 |
---|---|---|
committer | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-10-30 14:07:55 +0900 |
commit | 03638b1fe4e7124f6c231e288bb2581b773c4b98 (patch) | |
tree | 19cf08f04fe216e563e674930fbce1e1e465db0e | |
parent | c7f17dc35dab2d4defe0e7aa06f7318acbfd7422 (diff) |
html.py: indicate update time
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
-rwxr-xr-x | scripts/html.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/html.py b/scripts/html.py index d8ac92d..dafe5a4 100755 --- a/scripts/html.py +++ b/scripts/html.py @@ -12,6 +12,7 @@ import re import base import find import view +import datetime #==================================== # @@ -334,6 +335,9 @@ class periject_html(base.base): html("h1").print("BSP") self.menu_bsp() + html("div").print("<br><br>update<br>{}".format( + datetime.datetime.now().strftime("%Y/%m/%d %H:%M"))) + #-------------------- # body #-------------------- |