]> kaliko git repositories - mpd-goodies.git/blobdiff - src/lib/mpdclass.py
* add Goodie class (wraps mpdclass and startop together)
[mpd-goodies.git] / src / lib / mpdclass.py
index 8ea0191212f26cf80bfef63a2bbd0ddb836f866f..d20b022fed5a12f8151228f19f70468cf6749508 100755 (executable)
@@ -1,6 +1,22 @@
-#!/usr/bin/env python
 # -*- coding: utf-8 -*-
 
+# Copyright (c) 2009, 2010, 2012 Kaliko Jack <kaliko.jack@azylum.org>
+#
+#   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 <http://www.gnu.org/licenses/>.
+#
+
+
 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