fix: control if option is not just an unknown dyn family or dyn option

This commit is contained in:
egarette@silique.fr 2026-08-21 08:15:45 +02:00
parent 44645460a2
commit 2ccff6d041

View file

@ -115,7 +115,7 @@ class UserData:
option.name()
except (ConfigError, PropertiesOptionError):
pass
except AttributeError:
except (AttributeError, AttributeOptionError):
self._not_found_is_dynamic(self.config, path, cache, added, data[-1])
def _not_found_is_dynamic(self, config, path, cache, added, data):