From d4e615febadb94d246d46c51a6d83da93afc7a1f Mon Sep 17 00:00:00 2001 From: milesial Date: Wed, 24 Oct 2018 19:07:12 +0200 Subject: [PATCH] Fixed typo in convert when copying cover art --- beetsplug/convert.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/beetsplug/convert.py b/beetsplug/convert.py index d1223596f..ba629c8a5 100644 --- a/beetsplug/convert.py +++ b/beetsplug/convert.py @@ -399,9 +399,8 @@ class ConvertPlugin(BeetsPlugin): util.displayable_path(album.artpath), util.displayable_path(dest)) else: - self._log.info(u'Copying cover art to {0}', - util.displayable_path(album.artpath), - util.displayable_path(dest)) + self._log.info(u'Copying cover art from {0}', + util.displayable_path(album.artpath)) util.copy(album.artpath, dest) def convert_func(self, lib, opts, args):