diff options
author | Martin Basti <mbasti@redhat.com> | 2016-03-11 19:51:07 +0100 |
---|---|---|
committer | Martin Basti <mbasti@redhat.com> | 2016-03-22 10:20:51 +0100 |
commit | 491447cc5ab8c5eff2be57d609201cefb79f7053 (patch) | |
tree | 401ff990eddb00a6fed63ed9dd5c0e4b546799c4 /ipaserver/install/installutils.py | |
parent | aa749957360b85fecaed2f9f8dc286f560b89e0b (diff) | |
download | freeipa-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 'ipaserver/install/installutils.py')
-rw-r--r-- | ipaserver/install/installutils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ipaserver/install/installutils.py b/ipaserver/install/installutils.py index 071242654..179909543 100644 --- a/ipaserver/install/installutils.py +++ b/ipaserver/install/installutils.py @@ -120,10 +120,10 @@ def get_fqdn(): fqdn = "" try: fqdn = socket.getfqdn() - except: + except Exception: try: fqdn = socket.gethostname() - except: + except Exception: fqdn = "" return fqdn |