1
0
Fork 0
mirror of synced 2024-06-24 17:10:21 +12:00

Fix add search filter to update

This commit is contained in:
JDC 2020-11-21 13:06:51 -05:00 committed by Nick Sweeting
parent c5b1b91708
commit 8484bdb973

View file

@ -91,7 +91,7 @@ def main(args: Optional[List[str]]=None, stdin: Optional[IO]=None, pwd: Optional
parser.add_argument(
'--filter-type',
type=str,
choices=('exact', 'substring', 'domain', 'regex'),
choices=('exact', 'substring', 'domain', 'regex', 'search'),
default='exact',
help='Type of pattern matching to use when filtering URLs',
)