Revert "fix error in asciidoc2html.py script"

This reverts commit 64ffce27f9.
This commit is contained in:
Julin S 2020-06-22 01:23:13 +05:30
parent a80d2d38db
commit 4bf3556178
1 changed files with 1 additions and 1 deletions

View File

@ -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