diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-11-06 20:31:49 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-11-06 20:31:49 +0100 |
commit | 5111f59fb6674f8ff746ada28008bd3d409821b9 (patch) | |
tree | 10b32790bfd19281a53070f5bc7e74d908167350 /plugins/mpd_client.py | |
parent | 8a8284ae0615ddff18f94ee391e579d65f8915de (diff) | |
parent | 9cdfe38bcc5292e1cf9f71fd4ad7749f22ba29a8 (diff) | |
download | poezio-5111f59fb6674f8ff746ada28008bd3d409821b9.tar.gz poezio-5111f59fb6674f8ff746ada28008bd3d409821b9.tar.bz2 poezio-5111f59fb6674f8ff746ada28008bd3d409821b9.tar.xz poezio-5111f59fb6674f8ff746ada28008bd3d409821b9.zip |
Merge branch 'plugins' of http://git.louiz.org/poezio into plugins
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: |