Browse Source

Merge pull request #2271 from davidism/collapse-changelogs

Collapse old changelog directives
pull/2275/head
David Lord 8 years ago committed by GitHub
parent
commit
255375d72c
  1. 8
      docs/conf.py

8
docs/conf.py

@ -38,6 +38,14 @@ extensions = [
'flaskdocext'
]
try:
__import__('sphinxcontrib.log_cabinet')
except ImportError:
print('sphinxcontrib-log-cabinet is not installed.')
print('Changelog directives will not be re-organized.')
else:
extensions.append('sphinxcontrib.log_cabinet')
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']

Loading…
Cancel
Save