[utils] Fix PagedList

Bug in d8cf8d97a8
This commit is contained in:
pukkandan 2021-11-19 20:45:52 +05:30
parent c5e3f84972
commit c07a39ae8e
No known key found for this signature in database
GPG key ID: 0F00D95A001F4698
2 changed files with 6 additions and 2 deletions

View file

@ -1328,7 +1328,7 @@ class YoutubeDL(object):
self.to_stderr('\r')
self.report_warning(f'{e}; Re-extracting data')
return wrapper(self, *args, **kwargs)
except (DownloadCancelled, LazyList.IndexError):
except (DownloadCancelled, LazyList.IndexError, PagedList.IndexError):
raise
except Exception as e:
if self.params.get('ignoreerrors'):