Compare commits
2 commits
135936782f
...
88aca6b0ea
| Author | SHA1 | Date | |
|---|---|---|---|
| 88aca6b0ea | |||
| 1903ee8031 |
3 changed files with 8 additions and 2 deletions
|
|
@ -1,3 +1,9 @@
|
||||||
|
## 0.2.0a3 (2025-01-04)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- detect_symlink => only_self
|
||||||
|
|
||||||
## 0.2.0a2 (2025-01-04)
|
## 0.2.0a2 (2025-01-04)
|
||||||
|
|
||||||
### Feat
|
### Feat
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "rougail.output_doc"
|
name = "rougail.output_doc"
|
||||||
version = "0.2.0a2"
|
version = "0.2.0a3"
|
||||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
description = "Rougail output doc"
|
description = "Rougail output doc"
|
||||||
|
|
|
||||||
|
|
@ -144,7 +144,7 @@ class RougailOutputDoc(Examples):
|
||||||
for child in family.list():
|
for child in family.list():
|
||||||
if self._is_inaccessible_user_data(child):
|
if self._is_inaccessible_user_data(child):
|
||||||
continue
|
continue
|
||||||
if child.type(detect_symlink=True) == 'symlink':
|
if child.type(only_self=True) == 'symlink':
|
||||||
continue
|
continue
|
||||||
name = child.name(uncalculated=True)
|
name = child.name(uncalculated=True)
|
||||||
path = child.path(uncalculated=True)
|
path = child.path(uncalculated=True)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue