* accessible.py: Fixed bug #434686, wrong exception caught
authorparente <parente@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Mon, 30 Apr 2007 20:48:14 +0000 (20:48 +0000)
committerparente <parente@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Mon, 30 Apr 2007 20:48:14 +0000 (20:48 +0000)
git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@910 e2bd861d-eb25-0410-b326-f6ed22b6b98c

pyatspi/ChangeLog
pyatspi/accessible.py

index ccdacd8..401a033 100644 (file)
@@ -1,3 +1,8 @@
+2007-04-30  Peter Parente <parente@cs.unc.edu>
+
+       * accessible.py: 
+       Fixed bug #434686, wrong exception caught
+       
 2007-04-27  Li Yuan <li.yuan@sun.com>
 
        Patch from Peter.
index a2a047b..d1fc358 100644 (file)
@@ -380,7 +380,7 @@ class _AccessibleMixin(object):
     for i in xrange(self.childCount):
       try:
         yield self.getChildAtIndex(i)
-      except constants.CORBAException:
+      except LookupError:
         yield None
     
   def __str__(self):