From 93369558370e1474cab278dcc7f792ab5bd67272 Mon Sep 17 00:00:00 2001 From: eitani Date: Sat, 6 Oct 2007 18:08:44 +0000 Subject: [PATCH] * utils.py (StateSet.add): Fixed type (bug #484201). git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@950 e2bd861d-eb25-0410-b326-f6ed22b6b98c --- pyatspi/ChangeLog | 4 ++++ pyatspi/utils.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/pyatspi/ChangeLog b/pyatspi/ChangeLog index abdff11..6de4668 100644 --- a/pyatspi/ChangeLog +++ b/pyatspi/ChangeLog @@ -1,3 +1,7 @@ +2007-10-06 Eitan Isaacson + + * utils.py (StateSet.add): Fixed type (bug #484201). + 2007-09-15 Eitan Isaacson * registry.py: Fix to allow notification of events with diff --git a/pyatspi/utils.py b/pyatspi/utils.py index ac40333..48aa94b 100644 --- a/pyatspi/utils.py +++ b/pyatspi/utils.py @@ -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): ''' -- 2.7.4