mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 21:14:19 +01:00
Changes at line 1486
This commit is contained in:
parent
90c30d8564
commit
167ae91b8d
1 changed files with 5 additions and 4 deletions
|
|
@ -1482,11 +1482,12 @@ def move_items(lib, dest, query, copy, album, pretend, export=False,
|
|||
else:
|
||||
if export:
|
||||
if album:
|
||||
util.copy([(item.path, item.destination(basedir=dest))
|
||||
for obj in objs for item in obj.items()])
|
||||
for obj in objs:
|
||||
for item in obj.items():
|
||||
util.copy(item.path, item.destination(basedir=dest))
|
||||
else:
|
||||
util.copy([(obj.path, obj.destination(basedir=dest))
|
||||
for obj in objs])
|
||||
for item in objs:
|
||||
util.copy(item.path, item.destination(basedir=dest))
|
||||
if confirm:
|
||||
objs = ui.input_select_objects(
|
||||
u'Really %s' % act, objs,
|
||||
|
|
|
|||
Loading…
Reference in a new issue