mirror of
https://github.com/beetbox/beets.git
synced 2026-02-19 13:56:22 +01:00
Wrap line to ensure it is less than 80 characters
This commit is contained in:
parent
420b0724a0
commit
9eb4fc530b
1 changed files with 2 additions and 1 deletions
|
|
@ -82,7 +82,8 @@ class EmbedCoverArtPlugin(BeetsPlugin):
|
|||
|
||||
if remove_art_file and album.artpath is not None:
|
||||
if os.path.isfile(album.artpath):
|
||||
self._log.debug(u'Removing album art file for {0}', album)
|
||||
self._log.debug(u'Removing album art file '
|
||||
u'for {0}', album)
|
||||
os.remove(album.artpath)
|
||||
|
||||
embed_cmd.func = embed_func
|
||||
|
|
|
|||
Loading…
Reference in a new issue