mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2026-09-03 20:52:55 -05:00
Merge pull request #1892 from Eric89GXL/fix-no-members
FIX: Only check if members is True. closes #1822, refs #1891, #1828, #1061, #1663
This commit is contained in:
@@ -276,7 +276,7 @@ class Autosummary(Directive):
|
||||
self.warn('failed to import object %s' % real_name)
|
||||
items.append((display_name, '', '', real_name))
|
||||
continue
|
||||
if not documenter.check_module():
|
||||
if documenter.options.members and not documenter.check_module():
|
||||
continue
|
||||
|
||||
# try to also get a source code analyzer for attribute docs
|
||||
|
||||
Reference in New Issue
Block a user