From e03326d2b209b316326086996131674e0891ef74 Mon Sep 17 00:00:00 2001 From: yomguy Date: Fri, 1 May 2009 18:15:17 +0000 Subject: [PATCH] fix utf-8 git-svn-id: http://svn.parisson.org/svn/telemaster/trunk@14 353fd7da-fb10-4236-9bec-1a49139083f2 --- flac2mp3mix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flac2mp3mix.py b/flac2mp3mix.py index 3807591..7af17f1 100644 --- a/flac2mp3mix.py +++ b/flac2mp3mix.py @@ -54,7 +54,7 @@ class SubProcessPipe: if not stdin: stdin = subprocess.PIPE - self.proc = subprocess.Popen(command.encode('utf-8'), + self.proc = subprocess.Popen(command, shell = True, bufsize = self.buffer_size, stdin = stdin, -- 2.39.5