Compare commits
2 commits
16c6bff5e4
...
2e5b0b8dbd
| Author | SHA1 | Date | |
|---|---|---|---|
| 2e5b0b8dbd | |||
| b246945968 |
3 changed files with 12 additions and 3 deletions
|
|
@ -1,3 +1,9 @@
|
|||
## 0.2.0a30 (2026-01-21)
|
||||
|
||||
### Fix
|
||||
|
||||
- leadership with smaller default value
|
||||
|
||||
## 0.2.0a29 (2026-01-21)
|
||||
|
||||
### Fix
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
|||
|
||||
[project]
|
||||
name = "rougail.output_display"
|
||||
version = "0.2.0a29"
|
||||
version = "0.2.0a30"
|
||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||
readme = "README.md"
|
||||
description = "Rougail output display"
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ from typing import Optional, Any
|
|||
from ruamel.yaml import YAML
|
||||
from io import BytesIO
|
||||
|
||||
from tiramisu.error import PropertiesOptionError, ConfigError
|
||||
from tiramisu.error import PropertiesOptionError, LeadershipError, ConfigError
|
||||
from tiramisu import owners, groups
|
||||
|
||||
from .config import OutPuts
|
||||
|
|
@ -325,7 +325,10 @@ class Node:
|
|||
true_default = True
|
||||
value = meta_option.value.default()
|
||||
else:
|
||||
is_default = meta_option.owner.isdefault()
|
||||
try:
|
||||
is_default = meta_option.owner.isdefault()
|
||||
except LeadershipError:
|
||||
break
|
||||
try:
|
||||
value = meta_option.value.get()
|
||||
except ValueError as err:
|
||||
|
|
|
|||
Loading…
Reference in a new issue