From 5d4e3396d203110d27486380bd85b33283ac9d01 Mon Sep 17 00:00:00 2001 From: Johnny Robeson Date: Tue, 28 Jun 2016 23:28:58 -0400 Subject: [PATCH] wrap a path in displayable_path in commands --- 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 c352fe53d..523de31c8 100644 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -772,7 +772,7 @@ class TerminalImportSession(importer.ImportSession): either an action constant or a TrackMatch object. """ print_() - print_(task.item.path) + print_(displayable_path(task.item.path)) candidates, rec = task.candidates, task.rec # Take immediate action if appropriate.