From 3a9c9b509e3889544621cdca2a1cdb03334b08db Mon Sep 17 00:00:00 2001 From: Mike Gorse Date: Fri, 17 Apr 2009 14:30:47 -0500 Subject: [PATCH] 2008-04-17 Willie Walker * pyatspi/base.py: uint -> dbus.UInt32 for enum --- pyatspi/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyatspi/base.py b/pyatspi/base.py index 438f9e5..37faf2c 100644 --- a/pyatspi/base.py +++ b/pyatspi/base.py @@ -33,7 +33,7 @@ class AccessibleObjectNotAvailable(Exception): #------------------------------------------------------------------------------ -class Enum(uint): +class Enum(dbus.UInt32): def __str__(self): return self._enum_lookup[int(self)] -- 2.7.4