From 2100dab379d1d2d7b7bccf5473c3169d22b14e0c Mon Sep 17 00:00:00 2001 From: e5e4eaeacd39c5cfba4d7c852c48277ae50331e6 Date: Sat, 23 Aug 2014 12:17:24 +1000 Subject: [PATCH] displayable_path clean up error --- beets/ui/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beets/ui/commands.py b/beets/ui/commands.py index f68cfcb13..bbf73d48d 100644 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -1394,7 +1394,7 @@ def move_items(lib, dest, query, copy, album): entity = 'album' if album else 'item' log.info('{0} {1} {2}s.'.format(action, len(objs), entity)) for obj in objs: - log.debug(u'moving: {0}'.format(util.displayable_pathobj.path)) + log.debug(u'moving: {0}'.format(util.displayable_path(obj.path))) obj.move(copy, basedir=dest) obj.store()