diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-02-11 20:51:27 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-02-11 20:51:27 -0500 |
commit | f9d241418862d9ee6d680c6f4474363e50bc617f (patch) | |
tree | 83bf77942ccdb4288ed704643a86b91a34e56a5b /docs/conf.py | |
parent | e637637ff4eedb6d997d6835a9b9bedddbb22b00 (diff) | |
download | cmd2-git-f9d241418862d9ee6d680c6f4474363e50bc617f.tar.gz |
Refactored to move all cmd2.Cmd class member variables to beginning.
Also:
- Added locals_in_py to settable parameters to match documentation.
- Added pycon2010 slides back into doc build since they are referenced with :doc:
- Fixed some references in the documentation
- Updated unit tests accordingly
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 59dfb8d8..fdd6db8c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -70,7 +70,7 @@ language = None # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. # This patterns also effect to html_static_path and html_extra_path -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'pycon2010'] +exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'sphinx' |