From 1df6303222032452b9e1effc50a95f45899db13d Mon Sep 17 00:00:00 2001 From: Thomas Scholtes Date: Sun, 13 Apr 2014 13:18:41 +0200 Subject: [PATCH] Notify user when moving files --- beets/ui/commands.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/beets/ui/commands.py b/beets/ui/commands.py index 08898de23..cc5b14cfe 100644 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -1113,7 +1113,15 @@ def modify_items(lib, mods, dels, query, write, move, album, confirm): # Confirm action. if confirm: - extra = ' and write tags' if write else '' + if write and move: + extra = ', move and write tags' + elif write: + extra = ' and write tags' + elif move: + extra = ' and move' + else: + extra = '' + if not ui.input_yn('Really modify%s (Y/n)?' % extra): return