From ecb6dbe69a26ea88cb6fac3cb58eb39eb638ce54 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Mon, 26 Jul 2010 20:59:56 +0900 Subject: [PATCH] unicode in error messages --- anki/sound.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anki/sound.py b/anki/sound.py index 2272bd2b2..622279f05 100644 --- a/anki/sound.py +++ b/anki/sound.py @@ -258,7 +258,7 @@ Error processing audio. If you're on Linux and don't have sox 14.1+, you need to disable normalization. See the wiki. -Command was:\n""") + " ".join(c)) +Command was:\n""") + u" ".join(c)) class PyAudioThreadedRecorder(threading.Thread):