Turn both local and Spotify backend on by default

This commit is contained in:
Stein Magnus Jodal 2012-10-28 11:11:05 +01:00
parent 0641d2d207
commit d450e5a238

View File

@ -10,17 +10,17 @@ All available settings and their default values.
#: List of playback backends to use. See :ref:`backend-implementations` for all #: List of playback backends to use. See :ref:`backend-implementations` for all
#: available backends. #: available backends.
#: #:
#: When results from multiple backends are combined, they are combined in the
#: order the backends are listed here.
#:
#: Default:: #: Default::
#: #:
#: BACKENDS = (u'mopidy.backends.spotify.SpotifyBackend',) #: BACKENDS = (
#: #: u'mopidy.backends.local.LocalBackend',
#: Other typical values:: #: u'mopidy.backends.spotify.SpotifyBackend',
#: #: )
#: BACKENDS = (u'mopidy.backends.local.LocalBackend',)
#:
#: .. note::
#: Currently only the first backend in the list is used.
BACKENDS = ( BACKENDS = (
u'mopidy.backends.local.LocalBackend',
u'mopidy.backends.spotify.SpotifyBackend', u'mopidy.backends.spotify.SpotifyBackend',
) )