diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2022-07-07 15:17:26 +0900 |
---|---|---|
committer | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2022-07-12 09:11:30 +0900 |
commit | 477a499b6005fd1635c1b505c57ef01b7cf53104 (patch) | |
tree | 88fff0baa26fd1ca7c832a13e90f7d292db17a9a | |
parent | 36118858fd57ce0bf1ad1d925af20aa76188fa24 (diff) |
scripts/find.py: ignore Abandoned too
It will ignore "Done" automatically, but it should ignore
"Abandoned", too.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
-rw-r--r-- | Makefile | 2 | ||||
-rwxr-xr-x | scripts/find.py | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -46,7 +46,7 @@ index.html: ${HTMLDIR} ${WIKIDIR}: mkdir -p $@ -${HTML}: ${FILES} ./scripts/html_${CMD}.py ./scripts/html_base.py ./scripts/base.py +${HTML}: ${FILES} ./scripts/html_${CMD}.py ./scripts/html_base.py ./scripts/base.py ./scripts/find.py echo $@ ./scripts/html_${CMD}.py ${OPTION} ${FILES} > $@ loop: diff --git a/scripts/find.py b/scripts/find.py index d5060cd..bc49d70 100755 --- a/scripts/find.py +++ b/scripts/find.py @@ -26,7 +26,7 @@ class find(base.base): # # replace -a NoAssignee to -na "" # - # add "-ns Done" automatically + # add "-ns Done,Abandoned" automatically # if user doesn't specify "-s" or "-ns" or "-is" match = 0 for i in range(len(arg)): @@ -40,7 +40,7 @@ class find(base.base): match = 1 if (not match): - arg += ["-ns", "Done"] + arg += ["-ns", "Done,Abandoned"] return arg |