mirror of
https://github.com/beetbox/beets.git
synced 2026-01-06 07:53:40 +01:00
convert: fix breakage due to recent API changes
This commit is contained in:
parent
1f8fff7445
commit
54f29812cf
1 changed files with 1 additions and 3 deletions
|
|
@ -103,9 +103,7 @@ def convert_func(lib, config, opts, args):
|
|||
raise ui.UserError('no convert destination set')
|
||||
threads = opts.threads if opts.threads is not None else conf['threads']
|
||||
|
||||
fmt = '$albumartist - $album' if opts.album \
|
||||
else '$artist - $album - $title'
|
||||
ui.commands.list_items(lib, ui.decargs(args), opts.album, False, fmt)
|
||||
ui.commands.list_items(lib, ui.decargs(args), opts.album, None, config)
|
||||
|
||||
if not ui.input_yn("Convert? (Y/n)"):
|
||||
return
|
||||
|
|
|
|||
Loading…
Reference in a new issue