Compare commits
No commits in common. "d480d5bf5caeef143b4eda64dcc5ba93630e7dde" and "093819f051385d5a1187bdc6c00dce7036ecb31b" have entirely different histories.
d480d5bf5c
...
093819f051
3 changed files with 2 additions and 8 deletions
|
|
@ -1,9 +1,3 @@
|
|||
## 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.2rc1"
|
||||
version = "0.6.2rc0"
|
||||
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.index is None and sobj.option().isleader():
|
||||
if sobj.issymlinkoption() and sobj.option().isleader():
|
||||
yield sobj, None, None
|
||||
except ConfigError:
|
||||
pass
|
||||
|
|
|
|||
Loading…
Reference in a new issue