From 742ecf10ae2989e177cd97526ed32f31f336b218 Mon Sep 17 00:00:00 2001 From: Thomas Adamcik Date: Wed, 22 Jun 2011 03:04:46 +0200 Subject: [PATCH] Fix minor test regresion --- mopidy/frontends/mpd/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mopidy/frontends/mpd/__init__.py b/mopidy/frontends/mpd/__init__.py index 3b6b5db1..89180d0a 100644 --- a/mopidy/frontends/mpd/__init__.py +++ b/mopidy/frontends/mpd/__init__.py @@ -58,3 +58,6 @@ class MpdSession(network.LineProtocol): def on_line_recieved(self, line): self.send_lines(self.dispatcher.handle_request(line)) + + def close(self): + self.stop()