diff --git a/mopidy/mpd/protocol/current_playlist.py b/mopidy/mpd/protocol/current_playlist.py index 0433bba7..f9de250a 100644 --- a/mopidy/mpd/protocol/current_playlist.py +++ b/mopidy/mpd/protocol/current_playlist.py @@ -183,10 +183,6 @@ def playlistfind(context, tag, needle): ``playlistfind {TAG} {NEEDLE}`` Finds songs in the current playlist with strict matching. - - *GMPC:* - - - does not add quotes around the tag. """ if tag == 'filename': tl_tracks = context.core.tracklist.filter({'uri': [needle]}).get() @@ -260,7 +256,6 @@ def playlistsearch(context, tag, needle): *GMPC:* - - does not add quotes around the tag - uses ``filename`` and ``any`` as tags """ raise exceptions.MpdNotImplemented # TODO diff --git a/mopidy/mpd/protocol/music_db.py b/mopidy/mpd/protocol/music_db.py index ddd8f9f7..e51a7e22 100644 --- a/mopidy/mpd/protocol/music_db.py +++ b/mopidy/mpd/protocol/music_db.py @@ -96,7 +96,6 @@ def count(context, *args): *GMPC:* - - does not add quotes around the tag argument. - use multiple tag-needle pairs to make more specific searches. """ try: @@ -125,13 +124,11 @@ def find(context, *args): *GMPC:* - - does not add quotes around the field argument. - also uses ``find album "[ALBUM]" artist "[ARTIST]"`` to list album tracks. *ncmpc:* - - does not add quotes around the field argument. - capitalizes the type argument. *ncmpcpp:* @@ -255,13 +252,8 @@ def list_(context, *args): Genre: Rock OK - *GMPC:* - - - does not add quotes around the field argument. - *ncmpc:* - - does not add quotes around the field argument. - capitalizes the field argument. """ params = list(args) @@ -428,7 +420,6 @@ def search(context, *args): *GMPC:* - - does not add quotes around the field argument. - uses the undocumented field ``any``. - searches for multiple words like this:: @@ -436,7 +427,6 @@ def search(context, *args): *ncmpc:* - - does not add quotes around the field argument. - capitalizes the field argument. *ncmpcpp:*