Skip to content

Commit a38a6b2

Browse files
author
Thomas Scholtes
committed
Decode bytestring paths to unicode when logging
Fixes #964.
1 parent ad71af2 commit a38a6b2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

beets/library.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -826,7 +826,9 @@ def move_art(self, copy=False):
826826
return
827827

828828
new_art = util.unique_path(new_art)
829-
log.debug(u'moving album art {0} to {1}'.format(old_art, new_art))
829+
log.debug(u'moving album art {0} to {1}'
830+
.format(util.displayable_path(old_art),
831+
util.displayable_path(new_art)))
830832
if copy:
831833
util.copy(old_art, new_art)
832834
else:

0 commit comments

Comments
 (0)