Salome HOME
feat(all): replace all usage of bare except clause with except Exception clause
[tools/sat.git] / commands / config.py
index a5997bb7814fcc265dbeef9d3df3413f44d0eb58..24a95a86d28ce25f05a20f7e3d9ec7396ab7c425 100644 (file)
@@ -1068,7 +1068,7 @@ def get_config_children(config, args):
                 if dir(a).__contains__('keys'):
                     vals = map(lambda x: head + '.' + x,
                                [m for m in a.keys() if m.startswith(tail)])
-            except:
+            except Exception:
                 pass
 
     for v in sorted(vals):