diff options
author | Gerald Baier <gerald.baier@tum.de> | 2017-01-12 08:52:32 +0100 |
---|---|---|
committer | Gerald Baier <gerald.baier@tum.de> | 2017-01-12 08:52:32 +0100 |
commit | d9ae4ed81eb894921b23b0bb0771e0efde7350c8 (patch) | |
tree | 8516fae93693ab44a2f243d8dad1896f3975038f /sphinx/apidoc.py | |
parent | 2402fd7ebe2ff64de32544c559d30b2b00024339 (diff) | |
download | sphinx-git-d9ae4ed81eb894921b23b0bb0771e0efde7350c8.tar.gz |
implementing PR comments
Diffstat (limited to 'sphinx/apidoc.py')
-rw-r--r-- | sphinx/apidoc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/apidoc.py b/sphinx/apidoc.py index 89d59da16..87a9f3fb3 100644 --- a/sphinx/apidoc.py +++ b/sphinx/apidoc.py @@ -410,8 +410,8 @@ Note: By default this script will not overwrite already created files.""") module_path = rootpath, append_syspath = opts.append_syspath, ) - enabled_exts = {'ext_'+ext: getattr(opts, 'ext_'+ext) - for ext in EXTENSIONS if getattr(opts, 'ext_'+ext)} + enabled_exts = {'ext_' + ext: getattr(opts, 'ext_' + ext) + for ext in EXTENSIONS if getattr(opts, 'ext_' + ext)} d.update(enabled_exts) if isinstance(opts.header, binary_type): |