2009-06-08 Mark Doffman <mark.doffman@codethink.co.uk>
authorMark Doffman <mdoff@silver-wind.(none)>
Mon, 8 Jun 2009 11:24:18 +0000 (12:24 +0100)
committerMark Doffman <mdoff@silver-wind.(none)>
Mon, 8 Jun 2009 11:24:18 +0000 (12:24 +0100)
        * pyatspi/accessible.py
          Fix compile error, name of refresh method incorrect.

pyatspi/accessible.py

index 233d3eb..8bbe9b2 100644 (file)
@@ -275,7 +275,7 @@ class Accessible(BaseProxy):
 
     def refresh(self):
             self._relation_set = None
-            self._cache.application_cache[self._app_name].refresh()
+            self._cache.application_cache[self._app_name]._refresh()
 
 # Register the accessible class with the factory.
 accessible_factory.register_accessible_class(ATSPI_ACCESSIBLE, Accessible)