From bd57b4d9f1bfa96f29169b58e669940c1cf14906 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Tue, 19 May 2020 16:50:44 +0200 Subject: [PATCH] upgrade sphinx build --- build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.py b/build.py index 8f7ed50..a7751a6 100755 --- a/build.py +++ b/build.py @@ -4,7 +4,7 @@ import os import shutil import subprocess -import sphinx +import sphinx.cmd.build TRAVAUX = ['blanc'] INPUT = ["cnam"] @@ -37,7 +37,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__":