diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2017-05-16 16:24:35 -0500 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2017-05-16 14:24:35 -0700 |
commit | b630c06773bb4ba960f8791b756c17a39d049501 (patch) | |
tree | 8c5f4fa45705f71b357a7e5da0a031e16b13d96b | |
parent | de958df3b8aa977350233877309c10c48c9cb3ed (diff) | |
download | spack-b630c06773bb4ba960f8791b756c17a39d049501.tar.gz spack-b630c06773bb4ba960f8791b756c17a39d049501.tar.bz2 spack-b630c06773bb4ba960f8791b756c17a39d049501.tar.xz spack-b630c06773bb4ba960f8791b756c17a39d049501.zip |
Sphinx no longer ignores first argument (#4243)
* Sphinx no longer ignores first argument
* Duplicate first argument for maximum compatibility
-rw-r--r-- | lib/spack/docs/conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/docs/conf.py b/lib/spack/docs/conf.py index 48f1fda47e..d124848542 100644 --- a/lib/spack/docs/conf.py +++ b/lib/spack/docs/conf.py @@ -103,7 +103,7 @@ with open('command_index.rst', 'a') as index: # Without this, the API Docs will never actually update # apidoc_args = [ - 'sphinx_apidoc', # The first arugment is ignored + '--force', # Older versions of Sphinx ignore the first argument '--force', # Overwrite existing files '--no-toc', # Don't create a table of contents file '--output-dir=.', # Directory to place all output |