added 1 line before for loop

This commit is contained in:
SpirosChadoulos 2017-04-19 11:31:08 +03:00
parent a99b7e9e40
commit 53618258fa

View file

@ -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: