diff --git a/README.rst b/README.rst index 648cad14..5c214f53 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ mopidy ====== -mopidy is a MPD server with a Spotify backend. +mopidy is an MPD server with a Spotify backend. Goal @@ -10,10 +10,10 @@ Goal Using a standard MPD client we want to search for music in Spotify, manage Spotify play lists and play music from Spotify. -To limit scope, we will start by implementing a MPD server which only supports -Spotify, and not playback of files from disk. We will make mopidy modular, so -we can extend it with other backends in the future, like file playback and -other online music services such as Last.fm. +To limit scope, we will start by implementing an MPD server which only +supports Spotify, and not playback of files from disk. We will make mopidy +modular, so we can extend it with other backends in the future, like file +playback and other online music services such as Last.fm. Architecture diff --git a/mopidy/server.py b/mopidy/server.py index 367b48db..5589eef2 100644 --- a/mopidy/server.py +++ b/mopidy/server.py @@ -17,7 +17,7 @@ class MpdServer(asyncore.dispatcher): self.set_reuse_addr() self.bind((settings.MPD_SERVER_HOSTNAME, settings.MPD_SERVER_PORT)) self.listen(1) - logger.info(u'Please connect to %s port %s using a MPD client.', + logger.info(u'Please connect to %s port %s using an MPD client.', settings.MPD_SERVER_HOSTNAME, settings.MPD_SERVER_PORT) def handle_accept(self):