mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 12:49:02 +01:00
Print full error in verbose for sponskrub
This commit is contained in:
parent
806b05cf7a
commit
44af9751a7
@ -80,6 +80,8 @@ class SponSkrubPP(PostProcessor):
|
|||||||
self.to_screen('No segments in the SponsorBlock database')
|
self.to_screen('No segments in the SponsorBlock database')
|
||||||
else:
|
else:
|
||||||
stderr = stderr.decode('utf-8', 'replace')
|
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)
|
raise PostProcessingError(msg if msg else 'sponskrub failed with error code %s!' % p.returncode)
|
||||||
return [], information
|
return [], information
|
||||||
|
Loading…
Reference in New Issue
Block a user