From: yomguy Date: Fri, 1 May 2009 18:15:17 +0000 (+0000) Subject: fix utf-8 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=e03326d2b209b316326086996131674e0891ef74;p=telemaster.git fix utf-8 git-svn-id: http://svn.parisson.org/svn/telemaster/trunk@14 353fd7da-fb10-4236-9bec-1a49139083f2 --- 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,