Grammar fix
This commit is contained in:
parent
f9ceb70a35
commit
4b5112d2a4
10
README.rst
10
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
|
||||
|
||||
@ -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):
|
||||
|
||||
Loading…
Reference in New Issue
Block a user