lyrics: Disable Genius backend by default (#1770)

This commit is contained in:
Adrian Sampson 2015-12-28 16:35:39 -08:00
parent 1a2ffd0426
commit a976c371f6
3 changed files with 6 additions and 5 deletions

View file

@ -537,7 +537,7 @@ class Google(Backend):
class LyricsPlugin(plugins.BeetsPlugin):
SOURCES = ['google', 'lyricwiki', 'lyrics.com', 'musixmatch', 'genius']
SOURCES = ['google', 'lyricwiki', 'lyrics.com', 'musixmatch']
SOURCE_BACKENDS = {
'google': Google,
'lyricwiki': LyricsWiki,

View file

@ -95,7 +95,8 @@ Fixes:
* Possibly allow flexible attributes to be used with the ``%aunique`` template
function. :bug:`1775`
* :doc:`/plugins/lyrics`: The Genius backend is now more robust to
communication errors. :bug:`1770`
communication errors. The backend has also been disabled by default, since
the API it depends on is currently down. :bug:`1770`
.. _Emby Server: http://emby.media

View file

@ -52,9 +52,9 @@ configuration file. The available options are:
sources known to be scrapeable.
- **sources**: List of sources to search for lyrics. An asterisk ``*`` expands
to all available sources.
Default: ``google lyricwiki lyrics.com musixmatch genius``, i.e., all
sources. The *google* source will be automatically deactivated if no
``google_API_key`` is setup.
Default: ``google lyricwiki lyrics.com musixmatch``, i.e., all the
sources except for `genius`. The `google` source will be automatically
deactivated if no ``google_API_key`` is setup.
Here's an example of ``config.yaml``::