bugfix: E722 do not use bare except
[releng.git] / utils / test / testapi / opnfv_testapi / common / config.py
index 140e492..f888b07 100644 (file)
@@ -44,7 +44,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':