From: kaliko Date: Sat, 14 Nov 2015 18:55:32 +0000 (+0100) Subject: Removed useless exception catch in client X-Git-Tag: 0.14.1~2 X-Git-Url: https://git.kaliko.me/?a=commitdiff_plain;h=acb8b5cf14154b4594a324686f50ee4f68166699;p=mpd-sima.git Removed useless exception catch in client --- diff --git a/sima/client.py b/sima/client.py index 9156c31..9c12f8b 100644 --- a/sima/client.py +++ b/sima/client.py @@ -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']