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}`` ``playlistfind {TAG} {NEEDLE}``
Finds songs in the current playlist with strict matching. Finds songs in the current playlist with strict matching.
*GMPC:*
- does not add quotes around the tag.
""" """
if tag == 'filename': if tag == 'filename':
tl_tracks = context.core.tracklist.filter({'uri': [needle]}).get() tl_tracks = context.core.tracklist.filter({'uri': [needle]}).get()
@ -260,7 +256,6 @@ def playlistsearch(context, tag, needle):
*GMPC:* *GMPC:*
- does not add quotes around the tag
- uses ``filename`` and ``any`` as tags - uses ``filename`` and ``any`` as tags
""" """
raise exceptions.MpdNotImplemented # TODO raise exceptions.MpdNotImplemented # TODO

View File

@ -96,7 +96,6 @@ def count(context, *args):
*GMPC:* *GMPC:*
- does not add quotes around the tag argument.
- use multiple tag-needle pairs to make more specific searches. - use multiple tag-needle pairs to make more specific searches.
""" """
try: try:
@ -125,13 +124,11 @@ def find(context, *args):
*GMPC:* *GMPC:*
- does not add quotes around the field argument.
- also uses ``find album "[ALBUM]" artist "[ARTIST]"`` to list album - also uses ``find album "[ALBUM]" artist "[ARTIST]"`` to list album
tracks. tracks.
*ncmpc:* *ncmpc:*
- does not add quotes around the field argument.
- capitalizes the type argument. - capitalizes the type argument.
*ncmpcpp:* *ncmpcpp:*
@ -255,13 +252,8 @@ def list_(context, *args):
Genre: Rock Genre: Rock
OK OK
*GMPC:*
- does not add quotes around the field argument.
*ncmpc:* *ncmpc:*
- does not add quotes around the field argument.
- capitalizes the field argument. - capitalizes the field argument.
""" """
params = list(args) params = list(args)
@ -428,7 +420,6 @@ def search(context, *args):
*GMPC:* *GMPC:*
- does not add quotes around the field argument.
- uses the undocumented field ``any``. - uses the undocumented field ``any``.
- searches for multiple words like this:: - searches for multiple words like this::
@ -436,7 +427,6 @@ def search(context, *args):
*ncmpc:* *ncmpc:*
- does not add quotes around the field argument.
- capitalizes the field argument. - capitalizes the field argument.
*ncmpcpp:* *ncmpcpp:*