diff options
Diffstat (limited to 'src/python/openlmi/common/TimerManager.py')
| -rw-r--r-- | src/python/openlmi/common/TimerManager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/openlmi/common/TimerManager.py b/src/python/openlmi/common/TimerManager.py index 99f35d2..5eb39ae 100644 --- a/src/python/openlmi/common/TimerManager.py +++ b/src/python/openlmi/common/TimerManager.py @@ -263,7 +263,7 @@ class TimerManager(singletonmixin.Singleton): now = self.now() cmpi_logging.logger.trace_info( "Timer: Checking for expired, now=%f." % (now)) - expired = [t for t in self_timers if t._expired(now)] + expired = [t for t in self._timers if t._expired(now)] # Call the callbacks (unlocked!). for t in expired: |
