From 2e23c2acc6a8047e2bd126700ecadfbd9238ce84 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Fri, 30 Jul 2010 09:51:20 -0700 Subject: [PATCH] oops: one more unicode-decode in _sorted_walk --- beets/autotag/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/beets/autotag/__init__.py b/beets/autotag/__init__.py index 2abcab18f..ab579bea6 100644 --- a/beets/autotag/__init__.py +++ b/beets/autotag/__init__.py @@ -101,6 +101,7 @@ def _sorted_walk(path): # Recurse into directories. for base in dirs: + base = library._unicode_path(base) cur = os.path.join(path, base) # yield from _sorted_walk(cur) for res in _sorted_walk(cur):