* utils.py: Fix for bug #449356, typo in _findDescendantBreadth method
authorparente <parente@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Wed, 20 Jun 2007 23:43:22 +0000 (23:43 +0000)
committerparente <parente@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Wed, 20 Jun 2007 23:43:22 +0000 (23:43 +0000)
(Thanks Jon)

git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@934 e2bd861d-eb25-0410-b326-f6ed22b6b98c

pyatspi/ChangeLog
pyatspi/utils.py

index 01faa67..eff7da5 100644 (file)
@@ -1,3 +1,8 @@
+2007-06-20  Peter Parente  <parente@cs.unc.edu>
+
+       * utils.py: Fix for bug #449356, typo in _findDescendantBreadth method
+       (Thanks Jon)
+
 2007-05-31  Peter Parente  <parente@cs.unc.edu>
 
        * accessible.py: Fix for bug #439531, unable to define instance 
index a72093e..5f2bf4b 100644 (file)
@@ -197,7 +197,7 @@ def _findDescendantBreadth(acc, pred):
       pass
   for child in acc:
     try:
-      ret = _findDescedantBreadth(child, pred)
+      ret = _findDescendantBreadth(child, pred)
     except Exception:
       ret = None
     if ret is not None: return ret