diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2023-06-21 12:12:15 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2023-06-21 12:13:27 +0530 |
commit | d7cd97e8d8d42b500fea9abb2aa4ac9b0f98b2ad (patch) | |
tree | 05cd902de7e13f1798e7e93afa49db1f072df339 /yt_dlp/extractor/common.py | |
parent | d1b21561497b6bbb8ff1202e63f48eb41bd315af (diff) | |
download | hypervideo-pre-d7cd97e8d8d42b500fea9abb2aa4ac9b0f98b2ad.tar.lz hypervideo-pre-d7cd97e8d8d42b500fea9abb2aa4ac9b0f98b2ad.tar.xz hypervideo-pre-d7cd97e8d8d42b500fea9abb2aa4ac9b0f98b2ad.zip |
Fix bug in db3ad8a67661d7b234a6954d9c6a4a9b1749f5eb
Closes #7367
Diffstat (limited to 'yt_dlp/extractor/common.py')
-rw-r--r-- | yt_dlp/extractor/common.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/yt_dlp/extractor/common.py b/yt_dlp/extractor/common.py index 9662a7ee1..2ea36c63d 100644 --- a/yt_dlp/extractor/common.py +++ b/yt_dlp/extractor/common.py @@ -1297,8 +1297,9 @@ class InfoExtractor: def _get_netrc_login_info(self, netrc_machine=None): netrc_machine = netrc_machine or self._NETRC_MACHINE - cmd = self.get_param('netrc_cmd', '').format(netrc_machine) + cmd = self.get_param('netrc_cmd') if cmd: + cmd = cmd.replace('{}', netrc_machine) self.to_screen(f'Executing command: {cmd}') stdout, _, ret = Popen.run(cmd, text=True, shell=True, stdout=subprocess.PIPE) if ret != 0: |