]> kaliko git repositories - python-musicpd.git/commitdiff
Add some pylint exclusions
authorKaliko Jack <kaliko@azylum.org>
Fri, 15 Nov 2013 19:15:37 +0000 (20:15 +0100)
committerKaliko Jack <kaliko@azylum.org>
Fri, 15 Nov 2013 19:15:37 +0000 (20:15 +0100)
README.txt
musicpd.py

index 8077aa279c79e00d68c622771cd92ca7621c0b08..e6a2e31e9dea3baf2b3da0773fc22eba88b55145 100644 (file)
@@ -6,7 +6,7 @@ Getting python-musicpd
 ----------------------
 
 The latest release of python-musicpd can be found at
-http://pypi.python.org/pypi/python-musicpd/.
+http://pypi.python.org/pypi/python-musicpd.
 
 
 Getting the latest source code
@@ -70,7 +70,7 @@ You can contact the original author by emailing J. Alexander Treuman
 <jat⊘spatialrift.net>.  He can also be found idling in #mpd on
 irc.freenode.net as jat.
 
-The current maintainer can be found on xmpp chat room kaliko.me@conf.azylum.org
+The current maintainer can be found on xmpp chat room <kaliko.me⊘conf.azylum.org>
 or you can contact him by email/xmpp <kaliko⊘azylum.org>.
 
  .. _Installing Python Modules: http://docs.python.org/3/install/
index f480acdd0f5897b91a8eae8e0783d1ba55e86fe9..e281a922522fb257ff858393d3108eec505d1669 100644 (file)
@@ -15,6 +15,8 @@
 # You should have received a copy of the GNU Lesser General Public License
 # along with python-musicpd.  If not, see <http://www.gnu.org/licenses/>.
 
+# pylint: disable=C0111
+
 import socket
 
 
@@ -22,7 +24,7 @@ HELLO_PREFIX = "OK MPD "
 ERROR_PREFIX = "ACK "
 SUCCESS = "OK"
 NEXT = "list_OK"
-VERSION = '0.4.0pr0'
+VERSION = '0.4.0pr1'
 
 
 class MPDError(Exception):
@@ -382,6 +384,7 @@ class MPDClient(object):
         self.mpd_version = line[len(HELLO_PREFIX):].strip()
 
     def _reset(self):
+        # pylint: disable=w0201
         self.mpd_version = None
         self._iterating = False
         self._pending = []