Fix #249: Quoting format is integer, not string.

This commit is contained in:
Romain Dorgueil
2018-02-03 17:11:23 +01:00
parent aa6e426768
commit 02eeaff883
19 changed files with 68 additions and 47 deletions

View File

@ -61,10 +61,13 @@ language = None
# This patterns also effect to html_static_path and html_extra_path
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
autoclass_content = 'both'
autodoc_member_order = 'groupwise'
autodoc_default_flags =['members', 'undoc-members', 'show-inheritance', ]
autodoc_default_flags = [
'members',
'undoc-members',
'show-inheritance',
]
add_module_names = False
pygments_style = 'sphinx'