From 5993009fbcc54b1a9e37cc010ee82e389f34a04f Mon Sep 17 00:00:00 2001 From: Clinton Hall Date: Thu, 20 Jun 2019 10:58:57 +1200 Subject: [PATCH] fix positional argument follows keyword argument --- core/transcoder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/transcoder.py b/core/transcoder.py index 2f72ce9a..3ac55425 100644 --- a/core/transcoder.py +++ b/core/transcoder.py @@ -928,7 +928,7 @@ def transcode_directory(dir_name): result = 1 # set result to failed in case call fails. try: if isinstance(file, string_types): - proc = subprocess.Popen(command, stdout=bitbucket, subprocess.PIPE) + proc = subprocess.Popen(command, stdout=bitbucket, stderr=subprocess.PIPE) else: img, data = next(iteritems(file)) proc = subprocess.Popen(command, stdout=bitbucket, stderr=subprocess.PIPE, stdin=subprocess.PIPE)