1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-09-03 00:25:08 +00:00

[cleanup,docs] Minor fixes

Closes #2541, #2484
This commit is contained in:
pukkandan
2022-02-03 20:32:10 +05:30
parent 460a1c08b9
commit 455a15e2dc
14 changed files with 37 additions and 35 deletions

View File

@ -381,10 +381,10 @@ def create_parser():
geo.add_option(
'--geo-bypass',
action='store_true', dest='geo_bypass', default=True,
help='Bypass geographic restriction via faking X-Forwarded-For HTTP header')
help='Bypass geographic restriction via faking X-Forwarded-For HTTP header (default)')
geo.add_option(
'--no-geo-bypass',
action='store_false', dest='geo_bypass', default=True,
action='store_false', dest='geo_bypass',
help='Do not bypass geographic restriction via faking X-Forwarded-For HTTP header')
geo.add_option(
'--geo-bypass-country', metavar='CODE',