mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-15 01:15:06 +00:00
[sponskrub] Print "unrecognized args" message correctly
This commit is contained in:
parent
eab9b2bcaf
commit
256ed01025
1 changed files with 2 additions and 1 deletions
|
@ -84,6 +84,7 @@ def run(self, information):
|
|||
else:
|
||||
msg = stderr.decode('utf-8', 'replace').strip() or stdout.decode('utf-8', 'replace').strip()
|
||||
self.write_debug(msg, prefix=False)
|
||||
msg = msg.split('\n')[-1]
|
||||
line = 0 if msg[:12].lower() == 'unrecognised' else -1
|
||||
msg = msg.split('\n')[line]
|
||||
raise PostProcessingError(msg if msg else 'sponskrub failed with error code %s' % p.returncode)
|
||||
return [], information
|
||||
|
|
Loading…
Reference in a new issue