From 697e70f14b33cc4544da8ebc063265cc7d6b4c68 Mon Sep 17 00:00:00 2001 From: Rowan Lewis Date: Thu, 12 Sep 2013 22:21:50 +1000 Subject: [PATCH] Problem with unicode filenames sorted. --- beetsplug/convert.py | 1 + 1 file changed, 1 insertion(+) diff --git a/beetsplug/convert.py b/beetsplug/convert.py index 274ca6ba1..4837c83ee 100644 --- a/beetsplug/convert.py +++ b/beetsplug/convert.py @@ -53,6 +53,7 @@ def encode(source, dest): opts = [] for arg in command: + arg = arg.encode('utf-8') opts.append(Template(arg).substitute({ 'source': source, 'dest': dest