summaryrefslogtreecommitdiffstats
path: root/opnfv_testapi/common/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'opnfv_testapi/common/config.py')
-rw-r--r--opnfv_testapi/common/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/opnfv_testapi/common/config.py b/opnfv_testapi/common/config.py
index 75dbc35..a6ab338 100644
--- a/opnfv_testapi/common/config.py
+++ b/opnfv_testapi/common/config.py
@@ -49,7 +49,7 @@ class Config(object):
def _parse_value(value):
try:
value = int(value)
- except:
+ except Exception:
if str(value).lower() == 'true':
value = True
elif str(value).lower() == 'false':