summaryrefslogtreecommitdiffstats
path: root/ipalib/constants.py
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 /ipalib/constants.py
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 'ipalib/constants.py')
-rw-r--r--ipalib/constants.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipalib/constants.py b/ipalib/constants.py
index 1ff9ccc7e..021f18cd3 100644
--- a/ipalib/constants.py
+++ b/ipalib/constants.py
@@ -28,10 +28,10 @@ from ipapython.version import VERSION, API_VERSION
try:
FQDN = socket.getfqdn()
-except:
+except Exception:
try:
FQDN = socket.gethostname()
- except:
+ except Exception:
FQDN = None
# Path to CA certificate bundle