From 24fc239f2a256327d0913cc7dc5cca1248d5eb69 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Mon, 25 May 2020 11:21:58 +0200 Subject: [PATCH] build --- build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.py b/build.py index bbed438..7bcf686 100755 --- a/build.py +++ b/build.py @@ -3,7 +3,7 @@ import os import shutil -import sphinx +import sphinx.cmd.build INPUT = ["docs"] OUTPUT = "out" @@ -27,7 +27,7 @@ def main(): os.path.join(directory, doc), os.path.join(output_directory, doc), ] - sphinx.build_main(arguments) + sphinx.cmd.build.build_main(arguments) if __name__ == "__main__":