mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-04 17:34:32 +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)
|
p = subprocess.Popen(*args, stdout=subprocess.PIPE, **kwargs)
|
||||||
out,err = p.communicate()
|
out,err = p.communicate()
|
||||||
if p.returncode != 0:
|
if p.returncode != 0:
|
||||||
raise subprocess.CalledProcessError(p.returncode, p.args)
|
raise subprocess.CalledProcessError(p.returncode, args)
|
||||||
return out
|
return out
|
||||||
|
|
||||||
youtubeDlDir = os.path.join(os.path.dirname(__file__), '..', 'youtube-dl')
|
youtubeDlDir = os.path.join(os.path.dirname(__file__), '..', 'youtube-dl')
|
||||||
|
Loading…
Reference in New Issue
Block a user