summaryrefslogtreecommitdiff
path: root/plugins/mpd_client.py
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2011-11-06 20:31:19 +0100
committerFlorent Le Coz <louiz@louiz.org>2011-11-06 20:31:19 +0100
commit9cdfe38bcc5292e1cf9f71fd4ad7749f22ba29a8 (patch)
tree61f85ac885a9b86b987a33a7be72c3011e6e676d /plugins/mpd_client.py
parentd62a3a1b1bf2eda1186aa8bf94bd33c1b54c4d59 (diff)
downloadpoezio-9cdfe38bcc5292e1cf9f71fd4ad7749f22ba29a8.tar.gz
poezio-9cdfe38bcc5292e1cf9f71fd4ad7749f22ba29a8.tar.bz2
poezio-9cdfe38bcc5292e1cf9f71fd4ad7749f22ba29a8.tar.xz
poezio-9cdfe38bcc5292e1cf9f71fd4ad7749f22ba29a8.zip
typo
Diffstat (limited to 'plugins/mpd_client.py')
-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: