From a9793067fa161c8e5185170a511978e61335911f Mon Sep 17 00:00:00 2001 From: Taizo Simpson Date: Mon, 22 Oct 2018 20:34:21 -0400 Subject: [PATCH] When selecting items to modify, use configured order Closes #3501 --- beets/ui/commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beets/ui/commands.py b/beets/ui/commands.py index 6adc27786..ac81703b8 100755 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -1376,10 +1376,10 @@ def modify_items(lib, mods, dels, query, write, move, album, confirm): # objects. print_(u'Modifying {0} {1}s.' .format(len(objs), u'album' if album else u'item')) - changed = set() + changed = [] for obj in objs: if print_and_modify(obj, mods, dels): - changed.add(obj) + changed.append(obj) # Still something to do? if not changed: