mirror of
https://github.com/beetbox/beets.git
synced 2026-01-30 20:13:37 +01:00
Notify user when moving files
This commit is contained in:
parent
77eddaa2d1
commit
1df6303222
1 changed files with 9 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue