1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-08 21:04:38 +02:00

Print full error in verbose for sponskrub

This commit is contained in:
pukkandan 2021-01-14 14:04:33 +05:30
parent 806b05cf7a
commit 44af9751a7

View File

@ -80,6 +80,8 @@ def run(self, information):
self.to_screen('No segments in the SponsorBlock database')
else:
stderr = stderr.decode('utf-8', 'replace')
msg = stderr.strip().split('\n')[-1]
msg = stderr.strip()
if not self.get_param('verbose', False):
msg = msg.split('\n')[-1]
raise PostProcessingError(msg if msg else 'sponskrub failed with error code %s!' % p.returncode)
return [], information