summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-04-25 08:01:15 +0200
committerAnton Khirnov <anton@khirnov.net>2013-04-25 10:00:22 +0200
commit360ad0cf82395ff42dde4bea31bbd13b7d417163 (patch)
tree3c96dab305245e6cf33c239f8390af62d53d0425
parent0bc4b4ea73464e175012c89251d685a5992efaf1 (diff)
mpclient: drop unused find_sync() method
-rw-r--r--nephilim/mpclient.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/nephilim/mpclient.py b/nephilim/mpclient.py
index b724b5a..46dd324 100644
--- a/nephilim/mpclient.py
+++ b/nephilim/mpclient.py
@@ -273,12 +273,6 @@ class MPClient(QtCore.QObject):
all found songs. For allowed values of args, see MPD protocol documentation.
"""
self._command('find', args, callback = lambda data: callback(self._parse_songs(data)))
- def find_sync(self, *args):
- """
- Search for songs on MPD synchronously. Returns an iterator over all
- found songs. For allowed values of args, see MPD protocol documentation.
- """
- return self._command_sync('find', args, parse = lambda data: self._parse_songs(data))
def findadd(self, *args):
"""
Request a search on MPD and add found songs to current playlist. Allowed values