Compare commits
No commits in common. "88aca6b0ea5e329d3f74dfce41d97037713cf6bf" and "135936782f5781654d2c6a0a173e36d791173632" have entirely different histories.
88aca6b0ea
...
135936782f
3 changed files with 2 additions and 8 deletions
|
|
@ -1,9 +1,3 @@
|
||||||
## 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.0a3"
|
version = "0.2.0a2"
|
||||||
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(only_self=True) == 'symlink':
|
if child.type(detect_symlink=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