]> kaliko git repositories - python-musicpd.git/commitdiff
mpd.py: making _getitem return None if no item is returned
authorJ. Alexander Treuman <jat@spatialrift.net>
Sat, 1 Mar 2008 20:03:47 +0000 (15:03 -0500)
committerJ. Alexander Treuman <jat@spatialrift.net>
Sat, 1 Mar 2008 20:03:47 +0000 (15:03 -0500)
update and addid should normally always return a single item, so previously
an exception was raised if we got nothing.  However, when used in a
command_list, only the *last* call to update will return an item.  So
return None instead of raising an exception if we get nothing.

mpd.py

diff --git a/mpd.py b/mpd.py
index a5e1877e5fcfa45f156a982122980163b9bf4335..be8b390482e2a18639f94298e025e2282f5400a8 100644 (file)
--- a/mpd.py
+++ b/mpd.py
@@ -225,7 +225,7 @@ class MPDClient(object):
     def _getitem(self):
         items = list(self._readitems())
         if len(items) != 1:
-            raise ProtocolError, "Expected 1 item, got %i" % len(items)
+            return
         return items[0][1]
 
     def _getlist(self):