* utils.py: Fix for bug #449356, typo in _findDescendantBreadth method
[platform/core/uifw/at-spi2-atk.git] / pyatspi / utils.py
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