* utils.py (StateSet.add): Fixed type (bug #484201).
authoreitani <eitani@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Sat, 6 Oct 2007 18:08:44 +0000 (18:08 +0000)
committereitani <eitani@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Sat, 6 Oct 2007 18:08:44 +0000 (18:08 +0000)
git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@950 e2bd861d-eb25-0410-b326-f6ed22b6b98c

pyatspi/ChangeLog
pyatspi/utils.py

index abdff11..6de4668 100644 (file)
@@ -1,3 +1,7 @@
+2007-10-06  Eitan Isaacson  <eitan@ascender.com>
+
+       * utils.py (StateSet.add): Fixed type (bug #484201).
+
 2007-09-15  Eitan Isaacson  <eitan@ascender.com>
 
        * registry.py: Fix to allow notification of events with
index ac40333..48aa94b 100644 (file)
@@ -450,7 +450,7 @@ class StateSet(object):
     @param states: State(s) to add
     @type states: Accessibility.StateType
     '''
-    map(self.impl._this().add, state)
+    map(self.impl._this().add, states)
     
   def remove(self, state):
     '''