diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-07-30 23:52:00 -0700 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-07-30 23:52:00 -0700 |
commit | 57e6bf0c0162c3fd445580344ada5d662b373bd3 (patch) | |
tree | 5ba022bfcc13ca1d6f9f16ac323d570cde51895b /docs/conf.py | |
parent | 38c23a83dabebe5b4052ac3694cbffac4f95ac34 (diff) | |
download | cmd2-git-57e6bf0c0162c3fd445580344ada5d662b373bd3.tar.gz |
Fix Sphinx warning due to _static directory
Also:
- Made alias_startup.py example robust as to what directory it is launched from
Diffstat (limited to 'docs/conf.py')
-rw-r--r-- | docs/conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py index 13a2dba2..2c75e14e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -102,7 +102,7 @@ html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] +html_static_path = [] # -- Options for HTMLHelp output ------------------------------------------ |