From 574a76c2310f0c823a126c7b027bb6c1a4d966d1 Mon Sep 17 00:00:00 2001 From: Ade Date: Thu, 25 Sep 2014 18:48:23 +1200 Subject: [PATCH] Normalize path replacement strings part 2 Potential fix for https://github.com/rembo10/headphones/issues/1824 --- headphones/postprocessor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headphones/postprocessor.py b/headphones/postprocessor.py index 056e4f64..4a2784f5 100644 --- a/headphones/postprocessor.py +++ b/headphones/postprocessor.py @@ -637,7 +637,7 @@ def moveFiles(albumpath, release, tracks): sortname = release['ArtistName'] if sortname[0].isdigit(): - firstchar = '0-9' + firstchar = u'0-9' else: firstchar = sortname[0]