Skip to content

Commit

Permalink
Fix Doxygen "added in" check
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Jul 4, 2016
1 parent f861ed2 commit 3d8269e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/src/python/utilities.py
Expand Up @@ -521,9 +521,9 @@ def parseClassElem(self, e):
if d.find('para'):
for s in d.find('para').getiterator('simplesect'):
if s.get('kind') == 'note':
t = s.find('para').text
if t and t.lower().startswith('added in'):
found_version_added = True
for p in s.getiterator('para'):
if p.text and p.text.lower().startswith('added in'):
found_version_added = True

return documentable_members, documented_members, undocumented_members, bindable_members, found_version_added

Expand Down

0 comments on commit 3d8269e

Please sign in to comment.