From d83647c4a538e26e401d62b03b74236a427d1a2f Mon Sep 17 00:00:00 2001 From: j Date: Mon, 20 Jun 2016 18:27:31 +0200 Subject: [PATCH] don't hide oxtimelines errors --- pandora/archive/extract.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pandora/archive/extract.py b/pandora/archive/extract.py index fcf35f73..c6e124ea 100644 --- a/pandora/archive/extract.py +++ b/pandora/archive/extract.py @@ -421,11 +421,9 @@ def timeline(video, prefix, modes=None, size=None): '-o', prefix, '-c', os.path.join(prefix, 'cuts.json'), ] + video - p = subprocess.Popen(cmd, stdin=subprocess.PIPE, - stdout=subprocess.PIPE, stderr=subprocess.PIPE, - close_fds=True) # print(cmd) - # p = subprocess.Popen(cmd) + p = subprocess.Popen(cmd, stdin=subprocess.PIPE, + close_fds=True) p.wait()