Fix asciidoc2html path in build_release.py.

This commit is contained in:
Florian Bruhin 2015-08-16 21:30:12 +02:00
parent 83efd6c33f
commit ffe6411a5a

View File

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