From 0800e86a0587d3a32f68d1d0154cf10c3e9d7ec6 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Wed, 19 Sep 2012 23:58:38 +0200 Subject: [PATCH] docs: Use unicode literals in settings examples --- docs/development.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/development.rst b/docs/development.rst index c60580e1..49d8add5 100644 --- a/docs/development.rst +++ b/docs/development.rst @@ -264,15 +264,15 @@ settings file in the following way:: elif 'local' in profile: BACKENDS = (u'mopidy.backends.local.LocalBackend',) LOCAL_MUSIC_PATH = u'~/music' - + if 'shoutcast' in profile: OUTPUT = u'lame ! shout2send mount="/stream"' elif 'silent' in profile: - OUTPUT = 'fakesink' + OUTPUT = u'fakesink' MIXER = None - SPOTIFY_USERNAME = 'xxxxx' - SPOTIFY_PASSWORD = 'xxxxx' + SPOTIFY_USERNAME = u'xxxxx' + SPOTIFY_PASSWORD = u'xxxxx' Using this setup you can now run Mopidy with ``PROFILE=silent,spotify mopidy`` if you for instance want to test Spotify without any actual audio output.