mpd: Remove old warnings about quotes

This commit is contained in:
Stein Magnus Jodal 2015-07-21 15:07:02 +02:00
parent c88cf5ee82
commit 16b48e51e2
2 changed files with 0 additions and 15 deletions

View File

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

View File

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