From 53618258faec970a0005b640d6811ad0aa04684a Mon Sep 17 00:00:00 2001 From: SpirosChadoulos Date: Wed, 19 Apr 2017 11:31:08 +0300 Subject: [PATCH] added 1 line before for loop --- beets/ui/commands.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/beets/ui/commands.py b/beets/ui/commands.py index befbd1a45..26ed4836b 100755 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -1480,6 +1480,10 @@ def move_items(lib, dest, query, copy, album, pretend, export=False, confirm=Fal for obj in objs]) else: if export: + objs = ui.input_select_objects( + u'Really %s' % act, objs, + lambda o: show_path_changes( + [(o.path, o.destination(basedir=dest))])) for obj in objs: util.copy(obj.path, obj.destination(basedir=dest)) else: