From 477a499b6005fd1635c1b505c57ef01b7cf53104 Mon Sep 17 00:00:00 2001 From: Kuninori Morimoto Date: Thu, 7 Jul 2022 15:17:26 +0900 Subject: scripts/find.py: ignore Abandoned too It will ignore "Done" automatically, but it should ignore "Abandoned", too. Signed-off-by: Kuninori Morimoto --- scripts/find.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') 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 -- cgit v1.2.3