mirror of
https://github.com/beetbox/beets.git
synced 2025-12-25 10:05:13 +01:00
Now logs both the source and the destination
This commit is contained in:
parent
b27dfed1ef
commit
d5caae12bd
1 changed files with 3 additions and 2 deletions
|
|
@ -399,8 +399,9 @@ class ConvertPlugin(BeetsPlugin):
|
|||
util.displayable_path(album.artpath),
|
||||
util.displayable_path(dest))
|
||||
else:
|
||||
self._log.info(u'Copying cover art from {0}',
|
||||
util.displayable_path(album.artpath))
|
||||
self._log.info(u'Copying cover art from {0} to {1}',
|
||||
util.displayable_path(album.artpath),
|
||||
util.displayable_path(dest))
|
||||
util.copy(album.artpath, dest)
|
||||
|
||||
def convert_func(self, lib, opts, args):
|
||||
|
|
|
|||
Loading…
Reference in a new issue