From 54f29812cf321aef2934ba5fd352d6770fcf5d09 Mon Sep 17 00:00:00 2001 From: Jakob Schnitzer Date: Sun, 21 Oct 2012 13:35:41 +0200 Subject: [PATCH] convert: fix breakage due to recent API changes --- beetsplug/convert.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/beetsplug/convert.py b/beetsplug/convert.py index fecaa9fa0..0c4ee7ead 100644 --- a/beetsplug/convert.py +++ b/beetsplug/convert.py @@ -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