Pass instead of raise not implemented on commands, notcommands and tagtypes mpd commands to have gmpc working

This commit is contained in:
Johannes Knutsen 2010-02-25 11:14:25 +01:00
parent db7e5b645c
commit 259d5e6443

View File

@ -204,7 +204,7 @@ class MpdHandler(object):
Shows which commands the current user has access to.
"""
raise MpdNotImplemented # TODO
pass # TODO
@handle_pattern(r'^consume "(?P<state>[01])"$')
def _consume(self, state):
@ -601,7 +601,7 @@ class MpdHandler(object):
Shows which commands the current user does not have access to.
"""
raise MpdNotImplemented # TODO
pass # TODO
@handle_pattern(r'^outputs$')
def _outputs(self):
@ -1300,7 +1300,7 @@ class MpdHandler(object):
Shows a list of available song metadata.
"""
raise MpdNotImplemented # TODO
pass # TODO
@handle_pattern(r'^update( "(?P<uri>[^"]+)")*$')
def _update(self, uri=None, rescan_unmodified_files=False):