summaryrefslogtreecommitdiff
path: root/nephilim/mpclient.py
diff options
context:
space:
mode:
authorAnton Khirnov <wyskas@gmail.com>2009-10-08 08:53:57 +0200
committerAnton Khirnov <wyskas@gmail.com>2009-10-08 08:53:57 +0200
commitb485b8b82b67edd1337dc5ca5b2f0dabca7336d9 (patch)
tree7988085c98b9d6af1ee90ebfbd2e1237c0c5c834 /nephilim/mpclient.py
parentf75f2eaa28c28a919ce08c5e1d66320963cbb414 (diff)
mpd: switch to QtNetwork networking.
with this using "idle" command in the future will be easier.
Diffstat (limited to 'nephilim/mpclient.py')
-rw-r--r--nephilim/mpclient.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nephilim/mpclient.py b/nephilim/mpclient.py
index c66017a..0b7c1c6 100644
--- a/nephilim/mpclient.py
+++ b/nephilim/mpclient.py
@@ -392,7 +392,7 @@ class MPClient(QtCore.QObject):
self.outputs = []
if self.__check_command_ok('tagtypes'):
- self.tagtypes = map(str.lower, self._client.tagtypes()) + ['file']
+ self.tagtypes = map(unicode.lower, self._client.tagtypes()) + ['file']
else:
self.tagtypes = []