diff options
Diffstat (limited to 'Lib/idlelib/help.py')
-rw-r--r-- | Lib/idlelib/help.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/help.py b/Lib/idlelib/help.py index f420d40..cc027b9 100644 --- a/Lib/idlelib/help.py +++ b/Lib/idlelib/help.py @@ -76,9 +76,9 @@ class HelpParser(HTMLParser): if a == 'class': class_ = v s = '' - if tag == 'div' and class_ == 'section': + if tag == 'section' and attrs == [('id', 'idle')]: self.show = True # Start main content. - elif tag == 'div' and class_ == 'sphinxsidebar': + elif tag == 'div' and class_ == 'clearer': self.show = False # End main content. elif tag == 'p' and self.prevtag and not self.prevtag[0]: # Begin a new block for <p> tags after a closed tag. |