Grammar fix

This commit is contained in:
Stein Magnus Jodal 2009-12-26 13:32:45 +01:00
parent f9ceb70a35
commit 4b5112d2a4
2 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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):