Compare commits

...

2 commits

3 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
## 0.2.0a3 (2025-01-04)
### Fix
- detect_symlink => only_self
## 0.2.0a2 (2025-01-04)
### Feat

View file

@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
[project]
name = "rougail.output_doc"
version = "0.2.0a2"
version = "0.2.0a3"
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
readme = "README.md"
description = "Rougail output doc"

View file

@ -144,7 +144,7 @@ class RougailOutputDoc(Examples):
for child in family.list():
if self._is_inaccessible_user_data(child):
continue
if child.type(detect_symlink=True) == 'symlink':
if child.type(only_self=True) == 'symlink':
continue
name = child.name(uncalculated=True)
path = child.path(uncalculated=True)