From 002d360039fa92e592291a886d1497efbeef464d Mon Sep 17 00:00:00 2001 From: Thomas Scholtes Date: Mon, 10 Mar 2014 23:57:19 +0100 Subject: [PATCH] Show only changed and writable values with the write command --- beets/ui/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beets/ui/commands.py b/beets/ui/commands.py index 6da13b86b..de6349532 100644 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -1230,7 +1230,7 @@ def write_items(lib, query, pretend): # Check for and display changes. changed = ui.show_model_changes(item, clean_item, - library.ITEM_KEYS_META, always=True) + library.ITEM_KEYS_WRITABLE, always=True) if changed and not pretend: try: item.write()