Skip to content

Commit

Permalink
Merge from 3.x: PR #5272
Browse files Browse the repository at this point in the history
Fixes #5253
  • Loading branch information
ccordoba12 committed Sep 19, 2017
2 parents 8506447 + 668958e commit d705168
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spyder_profiler/widgets/profilergui.py
Original file line number Diff line number Diff line change
Expand Up @@ -661,8 +661,8 @@ def is_recursive(self, child_item):
while ancestor:
if (child_item.data(0, Qt.DisplayRole
) == ancestor.data(0, Qt.DisplayRole) and
child_item.data(4, Qt.DisplayRole
) == ancestor.data(4, Qt.DisplayRole)):
child_item.data(7, Qt.DisplayRole
) == ancestor.data(7, Qt.DisplayRole)):
return True
else:
ancestor = ancestor.parent()
Expand Down

0 comments on commit d705168

Please sign in to comment.