From 3a436bb33dc5553c3d447a5d77a650a5b248466a Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Mon, 6 Mar 2017 23:38:16 -0500 Subject: [PATCH] Remove explicit format We now use the default formats from the configuration. --- beetsplug/embedart.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/beetsplug/embedart.py b/beetsplug/embedart.py index 39cab585e..618761e90 100644 --- a/beetsplug/embedart.py +++ b/beetsplug/embedart.py @@ -33,17 +33,15 @@ def _confirmation(objs, opts): """ # Confirm artwork changes to library items. if not opts.yes: - fmt = u'$albumartist - $album' istr = u'album' if opts.file: - fmt = u'$albumartist - $album - $title' istr = u'file' prompt = u'Modify artwork for %i %s%s (y/n)?' % \ (len(objs), istr, 's' if len(objs) > 1 else '') # Show all the items or albums. for obj in objs: - print_(format(obj, fmt)) + print_(format(obj)) # Confirm with user. if not ui.input_yn(prompt, True):