From a38a6b2de943af334085e9bbf1721114492d1d4f Mon Sep 17 00:00:00 2001 From: Thomas Scholtes Date: Wed, 17 Sep 2014 11:25:29 +0200 Subject: [PATCH] Decode bytestring paths to unicode when logging Fixes #964. --- beets/library.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/beets/library.py b/beets/library.py index d2d58205a..c82f0224e 100644 --- a/beets/library.py +++ b/beets/library.py @@ -826,7 +826,9 @@ class Album(LibModel): return new_art = util.unique_path(new_art) - log.debug(u'moving album art {0} to {1}'.format(old_art, new_art)) + log.debug(u'moving album art {0} to {1}' + .format(util.displayable_path(old_art), + util.displayable_path(new_art))) if copy: util.copy(old_art, new_art) else: