Compare commits
2 commits
b050feb8ca
...
eb2d56da33
| Author | SHA1 | Date | |
|---|---|---|---|
| eb2d56da33 | |||
| 74d24c6df7 |
3 changed files with 10 additions and 3 deletions
|
|
@ -1,3 +1,9 @@
|
|||
## 0.2.0a24 (2026-01-01)
|
||||
|
||||
### Fix
|
||||
|
||||
- error only if default
|
||||
|
||||
## 0.2.0a23 (2026-01-01)
|
||||
|
||||
### Feat
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
|||
|
||||
[project]
|
||||
name = "rougail.output_display"
|
||||
version = "0.2.0a23"
|
||||
version = "0.2.0a24"
|
||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||
readme = "README.md"
|
||||
description = "Rougail output display"
|
||||
|
|
|
|||
|
|
@ -310,8 +310,9 @@ class Node:
|
|||
try:
|
||||
value = meta_option.value.get()
|
||||
except ValueError as err:
|
||||
meta_option._set_subconfig()
|
||||
self.errors.append({str(err): meta_option._subconfig})
|
||||
if not isdefault:
|
||||
meta_option._set_subconfig()
|
||||
self.errors.append({str(err): meta_option._subconfig})
|
||||
break
|
||||
except Exception as err:
|
||||
break
|
||||
|
|
|
|||
Loading…
Reference in a new issue