summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulin S <48789920+ju-sh@users.noreply.github.com>2020-05-27 11:12:45 +0530
committerJulin S <48789920+ju-sh@users.noreply.github.com>2020-05-27 11:12:45 +0530
commit64ffce27f9348e14836528c0313d3048669a29c7 (patch)
tree59a6f9ed10806a3342426cfd2bc108c89e24d192
parentfd9e0f19c6153ab04bc5940212294e96f805fe5c (diff)
downloadqutebrowser-64ffce27f9348e14836528c0313d3048669a29c7.tar.gz
qutebrowser-64ffce27f9348e14836528c0313d3048669a29c7.zip
fix error in asciidoc2html.py script
-rwxr-xr-xscripts/asciidoc2html.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/asciidoc2html.py b/scripts/asciidoc2html.py
index 90b94f014..2f64eac52 100755
--- a/scripts/asciidoc2html.py
+++ b/scripts/asciidoc2html.py
@@ -121,7 +121,7 @@ class AsciiDoc:
src = root / filename
assert self._website is not None # for mypy
dst = pathlib.Path(self._website)
- dst = src.parent.relative_to('.') / (src.stem + ".html")
+ dst = dst / src.parent.relative_to('.') / (src.stem + ".html")
dst.parent.mkdir(exist_ok=True)
assert self._tempdir is not None # for mypy