summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulin S <48789920+ju-sh@users.noreply.github.com>2020-06-24 11:29:27 +0530
committerJulin S <48789920+ju-sh@users.noreply.github.com>2020-06-24 11:29:27 +0530
commit6cbf7e3976ea51b0375a27974b60768fb01a2c2d (patch)
treec1c988e4c307ab1097ce216ec84b492835de27ce
parent969a99ce6d3da6a3c2ce679680a1e1b528996add (diff)
downloadqutebrowser-6cbf7e3976ea51b0375a27974b60768fb01a2c2d.tar.gz
qutebrowser-6cbf7e3976ea51b0375a27974b60768fb01a2c2d.zip
redo old edit
-rwxr-xr-xscripts/asciidoc2html.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/asciidoc2html.py b/scripts/asciidoc2html.py
index c2737b2ce..194293a6e 100755
--- a/scripts/asciidoc2html.py
+++ b/scripts/asciidoc2html.py
@@ -120,7 +120,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