Ver código fonte

Add search filter-type

JDC 5 anos atrás
pai
commit
70cc0c1950
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      archivebox/cli/archivebox_update.py

+ 1 - 1
archivebox/cli/archivebox_update.py

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