Fixed typo in convert when copying cover art

This commit is contained in:
milesial 2018-10-24 19:07:12 +02:00 committed by GitHub
parent d8df9f1b72
commit d4e615feba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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):