Allow list filtering by tag name

This commit is contained in:
JDC 2020-11-13 12:06:12 -05:00
parent 4372cb6eec
commit cbb3d04c12
2 changed files with 2 additions and 1 deletions

View file

@ -98,7 +98,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','tag'),
default='exact',
help='Type of pattern matching to use when filtering URLs',
)