Revert "fix error in asciidoc2html.py script"
This reverts commit 64ffce27f9.
This commit is contained in:
parent
a80d2d38db
commit
4bf3556178
|
|
@ -121,7 +121,7 @@ class AsciiDoc:
|
|||
src = root / filename
|
||||
assert self._website is not None # for mypy
|
||||
dst = pathlib.Path(self._website)
|
||||
dst = dst / src.parent.relative_to('.') / (src.stem + ".html")
|
||||
dst = src.parent.relative_to('.') / (src.stem + ".html")
|
||||
dst.parent.mkdir(exist_ok=True)
|
||||
|
||||
assert self._tempdir is not None # for mypy
|
||||
|
|
|
|||
Loading…
Reference in New Issue