From 4db9c0139b42cdaf7c22ac2032b5edfec9394ce4 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Fri, 3 Jun 2011 17:34:19 +0200 Subject: [PATCH] Update TODO for MPD command 'kill' --- mopidy/frontends/mpd/protocol/connection.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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):