summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/mpd_client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mpd_client.py b/plugins/mpd_client.py
index 5207a0d6..a7690a9d 100644
--- a/plugins/mpd_client.py
+++ b/plugins/mpd_client.py
@@ -10,7 +10,7 @@ class Plugin(BasePlugin):
def command_mpd(self, args):
args = shell_split(args)
- c = mpd.MPDClient()
+ c = mpd.MPDClient()
try:
c.connect(host=self.config.get('host', 'localhost'), port=self.config.get('host', '6600'))
except Exception as e: