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

[extractor] Fix fatal=False in RetryManager

This commit is contained in:
pukkandan
2022-09-22 01:53:37 +05:30
parent b27bc13af6
commit 8ca48a1a54
2 changed files with 5 additions and 3 deletions

View File

@ -39,7 +39,7 @@ class AmazonStoreIE(InfoExtractor):
def _real_extract(self, url):
id = self._match_id(url)
for retry in self.RetryManager(fatal=True):
for retry in self.RetryManager():
webpage = self._download_webpage(url, id)
try:
data_json = self._parse_json(self._html_search_regex(r'var\s?obj\s?=\s?jQuery\.parseJSON\(\'(.*)\'\)', webpage, 'data'), id)