浏览代码

Add search filter-type

JDC 5 年之前
父节点
当前提交
70cc0c1950
共有 1 个文件被更改,包括 1 次插入1 次删除
  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(
         '--filter-type',
         type=str,
-        choices=('exact', 'substring', 'domain', 'regex', 'search'),
+        choices=('exact', 'substring', 'domain', 'regex'),
         default='exact',
         help='Type of pattern matching to use when filtering URLs',
     )