diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-12-24 10:04:00 +0900 |
---|---|---|
committer | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-12-24 13:26:55 +0900 |
commit | 242b4e498ac83351a711e64b571d957ace106563 (patch) | |
tree | 0024e98b0381a79dabd427f13c220e63b7920dc6 | |
parent | 88faa5b020952aac35cba9c51873e7a694c2dd07 (diff) |
myhtml: sort by file name
We want sorted Summary.
This patch do it.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
-rwxr-xr-x | scripts/myhtml.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/myhtml.py b/scripts/myhtml.py index 1d5eed4..114d5a4 100755 --- a/scripts/myhtml.py +++ b/scripts/myhtml.py @@ -184,6 +184,7 @@ class periject_html(base.base): html("th").print("team") html("th").print("assignee") html("th").print("title") + files.sort() for file in files: v = view.viewer([file]) v.set_data(file) |