X-Git-Url: https://git.kaliko.me/?p=mpd-goodies.git;a=blobdiff_plain;f=src%2Flib%2Fmpdclass.py;h=d20b022fed5a12f8151228f19f70468cf6749508;hp=b17943eacc5e045ae94773b2027da6ea6cab5f30;hb=cbf589ccbaa8a96f596f956cd103e754f0936e28;hpb=8c680f357953b22043895a3b49f9e58981504669 diff --git a/src/lib/mpdclass.py b/src/lib/mpdclass.py index b17943e..d20b022 100755 --- a/src/lib/mpdclass.py +++ b/src/lib/mpdclass.py @@ -1,7 +1,23 @@ -#!/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 try: @@ -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