mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-05 01:44:33 +01:00
Raise correct args in exception
This commit is contained in:
parent
81eb98e4bd
commit
50d7a239ae
@ -10,7 +10,7 @@ except ImportError: # Python < 2.7
|
||||
p = subprocess.Popen(*args, stdout=subprocess.PIPE, **kwargs)
|
||||
out,err = p.communicate()
|
||||
if p.returncode != 0:
|
||||
raise subprocess.CalledProcessError(p.returncode, p.args)
|
||||
raise subprocess.CalledProcessError(p.returncode, args)
|
||||
return out
|
||||
|
||||
youtubeDlDir = os.path.join(os.path.dirname(__file__), '..', 'youtube-dl')
|
||||
|
Loading…
Reference in New Issue
Block a user