1
0
mirror of https://github.com/pirate/ArchiveBox.git synced 2025-08-23 22:53:00 +02:00

Add tag filter to update command

This commit is contained in:
JDC
2020-11-23 13:41:35 -05:00
committed by Nick Sweeting
parent 7903db6dfb
commit 273c9d91c6

View File

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