s110: address

This commit is contained in:
Jörg Thalheim
2025-08-20 16:28:18 +02:00
parent f3f6692e4d
commit 332d10e306
3 changed files with 4 additions and 4 deletions

View File

@@ -359,7 +359,7 @@ def complete_vars_for_machine(
var_id = f"{generator_name}/{var_name}"
vars_list.append(var_id)
except Exception:
except (OSError, PermissionError):
pass
vars_dict = dict.fromkeys(vars_list, "var")

View File

@@ -70,7 +70,7 @@ def requires_explicit_update(m: Machine) -> bool:
try:
if m.select("config.clan.deployment.requireExplicitUpdate"):
return False
except Exception:
except (ClanError, AttributeError):
pass
try: