fix: control if option is not just an unknown dyn family or dyn option
This commit is contained in:
parent
44645460a2
commit
2ccff6d041
1 changed files with 1 additions and 1 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in a new issue