Merge pull request #27599 from shuuji3/patch-8

Fix the typo of `-f` argument in scripts/linkchecker.py
pull/27607/head
Kubernetes Prow Robot 2021-04-18 17:14:35 -07:00 committed by GitHub
commit c6bbcf3765
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -373,7 +373,7 @@ def parse_arguments():
parser.add_argument("-f", dest="filter", default="/docs/**/*.md",
metavar="<FILTER>",
help=("File pattern to scan, e.g. '/docs/foo.md'. "
"(default='/docs/foo/*.md')"))
"(default='/docs/**/*.md')"))
parser.add_argument("-n", "--no-color", action="store_true",
help="Suppress colored printing.")