From 1b3332199cafe52205457fffa15351f568c4df8d Mon Sep 17 00:00:00 2001 From: parente Date: Wed, 20 Jun 2007 23:43:22 +0000 Subject: [PATCH] * utils.py: Fix for bug #449356, typo in _findDescendantBreadth method (Thanks Jon) git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@934 e2bd861d-eb25-0410-b326-f6ed22b6b98c --- pyatspi/ChangeLog | 5 +++++ pyatspi/utils.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pyatspi/ChangeLog b/pyatspi/ChangeLog index 01faa67..eff7da5 100644 --- a/pyatspi/ChangeLog +++ b/pyatspi/ChangeLog @@ -1,3 +1,8 @@ +2007-06-20 Peter Parente + + * utils.py: Fix for bug #449356, typo in _findDescendantBreadth method + (Thanks Jon) + 2007-05-31 Peter Parente * accessible.py: Fix for bug #439531, unable to define instance diff --git a/pyatspi/utils.py b/pyatspi/utils.py index a72093e..5f2bf4b 100644 --- a/pyatspi/utils.py +++ b/pyatspi/utils.py @@ -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 -- 2.7.4