X-Git-Url: https://git.kaliko.me/?p=mpd-goodies.git;a=blobdiff_plain;f=src%2Flib%2Fmpdclass.py;h=d20b022fed5a12f8151228f19f70468cf6749508;hp=8ea0191212f26cf80bfef63a2bbd0ddb836f866f;hb=cbf589ccbaa8a96f596f956cd103e754f0936e28;hpb=5cfeeb7424e9a8592433baefce1e83b43d283089 diff --git a/src/lib/mpdclass.py b/src/lib/mpdclass.py index 8ea0191..d20b022 100755 --- a/src/lib/mpdclass.py +++ b/src/lib/mpdclass.py @@ -1,6 +1,22 @@ -#!/usr/bin/env python # -*- coding: utf-8 -*- +# Copyright (c) 2009, 2010, 2012 Kaliko Jack +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# + + import sys from socket import error as SocketError @@ -22,10 +38,8 @@ class MPDClass(object): """ Simple wrapper to connect MPD. """ - con_id = dict({'host': self.cli_options.host, - 'port': self.cli_options.port}) try: - self.client.connect(**con_id) + self.client.connect(**self.con_id) except SocketError: return False return True