Procházet zdrojové kódy

Always use original conf.py file

In an attempt to fix #11, the patch provided in #13 actually broke
support for repositories that did not always had sphinx-multiversion
configured. This commit restores the original behaviour of always using
the config file passed to `sphinx-multiversion`, not the config file
from the git revision that is currently built.

Resolves #15.
Jan Holthuis před 4 roky
rodič
revize
ab9bac8019
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      sphinx_multiversion/main.py

+ 1 - 1
sphinx_multiversion/main.py

@@ -189,7 +189,7 @@ def main(argv=None):
                 "outputdir": os.path.join(
                     os.path.abspath(args.outputdir), outputdir
                 ),
-                "confdir": confpath,
+                "confdir": confdir_absolute,
                 "docnames": list(project.discover()),
             }