From ffe6411a5a1c3700dfdf878f45d4c9b4310fce38 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Sun, 16 Aug 2015 21:30:12 +0200 Subject: [PATCH] Fix asciidoc2html path in build_release.py. --- scripts/dev/build_release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dev/build_release.py b/scripts/dev/build_release.py index a54251d85..86ecaf586 100755 --- a/scripts/dev/build_release.py +++ b/scripts/dev/build_release.py @@ -43,7 +43,7 @@ def call_script(name, *args, python=sys.executable): *args: The arguments to pass. python: The python interpreter to use. """ - path = os.path.join(os.path.dirname(__file__), name) + path = os.path.join(os.path.dirname(__file__), os.pardir, name) subprocess.check_call([python, path] + list(args))