From 259d5e64433bea87a757947d426d9138b8376cba Mon Sep 17 00:00:00 2001 From: Johannes Knutsen Date: Thu, 25 Feb 2010 11:14:25 +0100 Subject: [PATCH] Pass instead of raise not implemented on commands, notcommands and tagtypes mpd commands to have gmpc working --- mopidy/mpd/handler.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mopidy/mpd/handler.py b/mopidy/mpd/handler.py index 640b6453..bd8d8fe9 100644 --- a/mopidy/mpd/handler.py +++ b/mopidy/mpd/handler.py @@ -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[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[^"]+)")*$') def _update(self, uri=None, rescan_unmodified_files=False):