mirror of
https://github.com/beetbox/beets.git
synced 2026-01-02 22:12:53 +01:00
Added check to remove duplicate changes
This commit is contained in:
parent
fd56b1d677
commit
b901eb3723
1 changed files with 1 additions and 1 deletions
|
|
@ -1378,7 +1378,7 @@ def modify_items(lib, mods, dels, query, write, move, album, confirm):
|
|||
.format(len(objs), u'album' if album else u'item'))
|
||||
changed = []
|
||||
for obj in objs:
|
||||
if print_and_modify(obj, mods, dels):
|
||||
if print_and_modify(obj, mods, dels) and obj not in changed:
|
||||
changed.append(obj)
|
||||
|
||||
# Still something to do?
|
||||
|
|
|
|||
Loading…
Reference in a new issue