diff options
| author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-12-12 01:22:03 +0900 |
|---|---|---|
| committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-12-12 12:44:55 +0900 |
| commit | 8cba23b8c1b83cf02113d0dcc240ccdf363c97a0 (patch) | |
| tree | df4912bbf4d46df0677b3f2cc7f270a6560fa047 /sphinx/writers/texinfo.py | |
| parent | 7a0e205ebdf09460e88c4ecc14f39dcad31460e1 (diff) | |
| download | sphinx-git-8cba23b8c1b83cf02113d0dcc240ccdf363c97a0.tar.gz | |
Fix annotations
Diffstat (limited to 'sphinx/writers/texinfo.py')
| -rw-r--r-- | sphinx/writers/texinfo.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sphinx/writers/texinfo.py b/sphinx/writers/texinfo.py index b26c1055f..2b6cf7e2d 100644 --- a/sphinx/writers/texinfo.py +++ b/sphinx/writers/texinfo.py @@ -95,11 +95,12 @@ def find_subsections(section): # type: (nodes.Element) -> List[nodes.section] """Return a list of subsections for the given ``section``.""" result = [] - for child in section.children: + for child in section: if isinstance(child, nodes.section): result.append(child) continue - result.extend(find_subsections(child)) + elif isinstance(child, nodes.Element): + result.extend(find_subsections(child)) return result |
