You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
diff --git a/beetsplug/lyrics.py b/beetsplug/lyrics.py
index d9db8ea..54bdd5f 100644
--- a/beetsplug/lyrics.py
+++ b/beetsplug/lyrics.py
@@ -679,7 +679,8 @@ class LyricsPlugin(plugins.BeetsPlugin):
u'The Genius backend requires BeautifulSoup, which is not '
u'installed, so the source is disabled.'
)
- sources.remove('google')
+ if 'google' in sources:
+ sources.remove('google')
self.config['bing_lang_from'] = [
x.lower() for x in self.config['bing_lang_from'].as_str_seq()]
Problem
i try debugging beets and meet an error on lyric plugin.
installing bs4 will fix the error but unfortunately i can't reproduce the error after that, even with new virtualenv
Running this command in verbose (
-vv
) mode:Led to this problem:
Here's a link to the music files that trigger the bug (if relevant):
https://www.youtube.com/watch?v=tiCNSLJ8Ihc
Setup
My configuration (output of
beet config
) is:The text was updated successfully, but these errors were encountered: