Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
yinyajiang committed Dec 23, 2024
1 parent 29780bd commit 93320d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion yt_dlp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -914,7 +914,7 @@ def parse_options(argv=None):
'cookiefile': opts.cookiefile,
'webview_location': opts.webview_location,
'webview_install': opts.webview_install,
'webviem_params': opts.webviem_params,
'webview_params': opts.webview_params,
'cookiesfrombrowser': opts.cookiesfrombrowser,
'legacyserverconnect': opts.legacy_server_connect,
'nocheckcertificate': opts.no_check_certificate,
Expand Down
4 changes: 2 additions & 2 deletions yt_dlp/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -1493,11 +1493,11 @@ def _alias_callback(option, opt_str, value, parser, opts, nargs):
help='Location of the webview')
filesystem.add_option(
'--webview-install',
dest='webview_install',
dest='webview_install', default=None,
help='Install the webview url')
filesystem.add_option(
'--webview-params',
dest='webview_params',
dest='webview_params', default=None,
help='Params of the webview')
filesystem.add_option(
'--no-cookies',
Expand Down

0 comments on commit 93320d4

Please sign in to comment.