mirror of
https://github.com/beetbox/beets.git
synced 2026-02-10 09:25:42 +01:00
Flake8 fix in spotify
This commit is contained in:
parent
d8c4be100d
commit
4f2fe19e03
1 changed files with 3 additions and 2 deletions
|
|
@ -146,8 +146,9 @@ class SpotifyPlugin(BeetsPlugin):
|
|||
failure_count = len(failures)
|
||||
if failure_count > 0:
|
||||
if self.config['show_failures'].get():
|
||||
log.info(str(failure_count) +
|
||||
" track(s) did not match a Spotify ID:")
|
||||
log.info("{0} track(s) did not match a Spotify ID:".format(
|
||||
failure_count
|
||||
))
|
||||
for track in failures:
|
||||
log.info("track:" + track)
|
||||
log.info("")
|
||||
|
|
|
|||
Loading…
Reference in a new issue