summaryrefslogtreecommitdiff
path: root/nephilim/mpclient.py
diff options
context:
space:
mode:
authorAnton Khirnov <wyskas@gmail.com>2009-08-23 20:37:03 +0200
committerAnton Khirnov <wyskas@gmail.com>2009-08-23 20:37:03 +0200
commit405db9d29530a063475e183a0609d67fc59fe3ac (patch)
tree80be99b09e93db856299563d8f68ce51abea64d6 /nephilim/mpclient.py
parente15061c283aea38ee6fffba4e81663550586c6fe (diff)
Songinfo: rewrite to use all metadata from MPD.
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 a1298b1..35be3f5 100644
--- a/nephilim/mpclient.py
+++ b/nephilim/mpclient.py
@@ -211,7 +211,7 @@ class MPClient(QtCore.QObject):
if not self.__check_command_ok('tagtypes'):
return []
- return self._retrieve(self._client.tagtypes)
+ return map(str.lower, self._retrieve(self._client.tagtypes) + ['file'])
def commands(self):
"""List all currently available MPD commands."""
return self._commands