summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorMartin Basti <mbasti@redhat.com>2016-03-11 19:51:07 +0100
committerMartin Basti <mbasti@redhat.com>2016-03-22 10:20:51 +0100
commit491447cc5ab8c5eff2be57d609201cefb79f7053 (patch)
tree401ff990eddb00a6fed63ed9dd5c0e4b546799c4 /client
parentaa749957360b85fecaed2f9f8dc286f560b89e0b (diff)
downloadfreeipa-491447cc5ab8c5eff2be57d609201cefb79f7053.tar.gz
freeipa-491447cc5ab8c5eff2be57d609201cefb79f7053.tar.xz
freeipa-491447cc5ab8c5eff2be57d609201cefb79f7053.zip
pylint: remove bare except
Bare except should not be used. Reviewed-By: Petr Spacek <pspacek@redhat.com> Reviewed-By: Lukas Slebodnik <lslebodn@redhat.com>
Diffstat (limited to 'client')
-rwxr-xr-xclient/ipa-client-install4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/ipa-client-install b/client/ipa-client-install
index 82e5c4cb0..884491eb0 100755
--- a/client/ipa-client-install
+++ b/client/ipa-client-install
@@ -2470,11 +2470,11 @@ def install(options, env, fstore, statestore):
try:
socket.inet_pton(socket.AF_INET, srv)
is_ipaddr = True
- except:
+ except socket.error:
try:
socket.inet_pton(socket.AF_INET6, srv)
is_ipaddr = True
- except:
+ except socket.error:
is_ipaddr = False
if is_ipaddr: