From 9eb4fc530bd82a1e0c14344090bcd207a80ca0e3 Mon Sep 17 00:00:00 2001 From: Jack Wilsdon Date: Sun, 6 Sep 2015 21:53:34 +0100 Subject: [PATCH] Wrap line to ensure it is less than 80 characters --- beetsplug/embedart.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/beetsplug/embedart.py b/beetsplug/embedart.py index 9a68fe820..4ae081b2c 100644 --- a/beetsplug/embedart.py +++ b/beetsplug/embedart.py @@ -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