]> kaliko git repositories - mpd-sima.git/commitdiff
Removed useless exception catch in client
authorkaliko <kaliko@azylum.org>
Sat, 14 Nov 2015 18:55:32 +0000 (19:55 +0100)
committerkaliko <kaliko@azylum.org>
Sat, 14 Nov 2015 18:55:32 +0000 (19:55 +0100)
sima/client.py

index 9156c31ed683361bbc17bf6cca49525f049ae97d..9c12f8be1a9e55456636a6bb88fac9d76a6d0587 100644 (file)
@@ -378,18 +378,8 @@ class PlayerClient(Player):
         if password:
             try:
                 self._client.password(password)
-
-            # Catch errors with the password command (e.g., wrong password)
-            except CommandError as err:
-                raise PlayerError("Could not connect to '%s': "
-                                  "password command failed: %s" %
-                                  (host, err))
-
-            # Catch all other possible errors
             except (MPDError, IOError) as err:
-                raise PlayerError("Could not connect to '%s': "
-                                  "error with password command: %s" %
-                                  (host, err))
+                raise PlayerError("Could not connect to '%s': %s", (host, err))
         # Controls we have sufficient rights
         needed_cmds = ['status', 'stats', 'add', 'find', \
                        'search', 'currentsong', 'ping']