Compare commits

...

2 commits

Author SHA1 Message Date
d480d5bf5c bump: version 0.6.2rc0 → 0.6.2rc1 2025-03-19 10:02:50 +01:00
fb0d9c9d22 fix: better leader support 2025-03-19 10:02:29 +01:00
3 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
## 0.6.2rc1 (2025-03-19)
### Fix
- better leader support
## 0.6.2rc0 (2025-01-03)
### Fix

View file

@ -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"

View file

@ -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