diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-11-06 20:31:19 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-11-06 20:31:19 +0100 |
commit | 9cdfe38bcc5292e1cf9f71fd4ad7749f22ba29a8 (patch) | |
tree | 61f85ac885a9b86b987a33a7be72c3011e6e676d /plugins/mpd_client.py | |
parent | d62a3a1b1bf2eda1186aa8bf94bd33c1b54c4d59 (diff) | |
download | poezio-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.py | 2 |
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: |