Compare commits
2 commits
093819f051
...
d480d5bf5c
| Author | SHA1 | Date | |
|---|---|---|---|
| d480d5bf5c | |||
| fb0d9c9d22 |
3 changed files with 8 additions and 2 deletions
|
|
@ -1,3 +1,9 @@
|
|||
## 0.6.2rc1 (2025-03-19)
|
||||
|
||||
### Fix
|
||||
|
||||
- better leader support
|
||||
|
||||
## 0.6.2rc0 (2025-01-03)
|
||||
|
||||
### Fix
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
|||
|
||||
[project]
|
||||
name = "tiramisu_cmdline_parser"
|
||||
version = "0.6.2rc0"
|
||||
version = "0.6.2rc1"
|
||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||
readme = "README.md"
|
||||
description = "command-line parser using Tiramisu"
|
||||
|
|
|
|||
|
|
@ -488,7 +488,7 @@ class TiramisuCmdlineParser(ArgumentParser):
|
|||
# no follower found, search if there is a symlink
|
||||
for sobj in config.list(uncalculated=True):
|
||||
try:
|
||||
if sobj.issymlinkoption() and sobj.option().isleader():
|
||||
if sobj.issymlinkoption() and sobj.index is None and sobj.option().isleader():
|
||||
yield sobj, None, None
|
||||
except ConfigError:
|
||||
pass
|
||||
|
|
|
|||
Loading…
Reference in a new issue