* utils.py: Fixed typo in call for _findAllDescendants (bug #454090).
authoreitani <eitani@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Wed, 25 Jul 2007 12:20:50 +0000 (12:20 +0000)
committereitani <eitani@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Wed, 25 Jul 2007 12:20:50 +0000 (12:20 +0000)
git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@939 e2bd861d-eb25-0410-b326-f6ed22b6b98c

pyatspi/ChangeLog
pyatspi/utils.py

index eff7da5..05521d5 100644 (file)
@@ -1,3 +1,7 @@
+2007-07-25  Eitan Isaacson  <eitan@ascender.com>
+
+       * utils.py: Fixed typo in call for _findAllDescendants (bug #454090).
+
 2007-06-20  Peter Parente  <parente@cs.unc.edu>
 
        * utils.py: Fix for bug #449356, typo in _findDescendantBreadth method
index 5f2bf4b..ac40333 100644 (file)
@@ -258,7 +258,7 @@ def _findAllDescendants(acc, pred, matches):
       if pred(child): matches.append(child)
     except Exception:
       pass
-    findAllDescendants(child, pred, matches)
+    _findAllDescendants(child, pred, matches)
   
 def findAncestor(acc, pred):
   '''