From fb196f23f7aa034adbe61ee8fe355e7323131ef4 Mon Sep 17 00:00:00 2001 From: Wouter van Wijk Date: Sun, 10 Mar 2013 22:08:55 +0100 Subject: [PATCH] better readme --- README.rst | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 67fabd5..8bd0898 100644 --- a/README.rst +++ b/README.rst @@ -20,10 +20,8 @@ Installation If you use an older version of Mopidy, you should use this version: `0.11.x `_ -There is another option if you want to use 0.11 with the recent version of the webclient. You can patch the playlists.py file of core (in linux located in /usr/share/pyshared/mopidy/core or in OSX /Library/Python/2.7/site-packages/mopidy/core ). You can use `this patch '_ or you can manually change the function get_playlists to this: +There is another option if you want to use 0.11 with the recent version of the webclient. You can patch the playlists.py file of core (in linux located in /usr/share/pyshared/mopidy/core or in OSX /Library/Python/2.7/site-packages/mopidy/core ). You can use `this patch `_ or you can manually change the function get_playlists to this: - -```python def get_playlists(self, include_tracks=True): futures = [ b.playlists.playlists for b in self.backends.with_playlists] @@ -32,7 +30,6 @@ There is another option if you want to use 0.11 with the recent version of the w if not include_tracks: playlists = [p.copy(tracks=[]) for p in playlists] return playlists -``` To install Mopidy, check out `the installation docs `_, `the settings docs `_ and `even more detailed information `_.