diff --git a/mopidy/frontends/mpd/protocol/connection.py b/mopidy/frontends/mpd/protocol/connection.py index d6a1dc7c..2b030eb0 100644 --- a/mopidy/frontends/mpd/protocol/connection.py +++ b/mopidy/frontends/mpd/protocol/connection.py @@ -22,7 +22,9 @@ def kill(context): Kills MPD. """ - pass # TODO + # TODO We do not want to allow remote killing of Mopidy. We should throw an + # MPD exception here. Maybe using ACK_ERROR_PERMISSION. + pass @handle_pattern(r'^password "(?P[^"]+)"$') def password_(context, password):