* Fixed bug #436930, Syntax error when raising IndexError
authorparente <parente@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Tue, 8 May 2007 18:03:12 +0000 (18:03 +0000)
committerparente <parente@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Tue, 8 May 2007 18:03:12 +0000 (18:03 +0000)
git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@919 e2bd861d-eb25-0410-b326-f6ed22b6b98c

pyatspi/ChangeLog
pyatspi/accessible.py

index d80ca8c..8ddbef7 100644 (file)
@@ -1,5 +1,11 @@
 2007-05-08  Peter Parente  <parente@cs.unc.edu>
 
+        Patch from Eitan Isaacson
+       * accessible.py: 
+       Fixed bug #436930, Syntax error when raising IndexError
+
+2007-05-08  Peter Parente  <parente@cs.unc.edu>
+
        Patch from Eitan Isaacson
        * event.py: 
        Fixed bug #435947, Fix reference count error
index aef89e1..b5ab01d 100644 (file)
@@ -419,7 +419,7 @@ class _AccessibleMixin(object):
     if index >= n:
       raise IndexError
     elif index < -n:
-      raise IndexError:
+      raise IndexError
     elif index < 0:
       index += n
     return self.getChildAtIndex(index)