summaryrefslogtreecommitdiffstats
path: root/src/python/openlmi/common/TimerManager.py
diff options
context:
space:
mode:
authorJan Safranek <jsafrane@redhat.com>2013-04-15 14:47:18 +0200
committerJan Safranek <jsafrane@redhat.com>2013-04-16 13:03:47 +0200
commitbc058e76b5379196462cda85b91e44bc45dfab34 (patch)
tree9548cdf060a54b310f06049a851d64116f8f9708 /src/python/openlmi/common/TimerManager.py
parentace33f58e62dad9463211f980595270f262848f0 (diff)
downloadopenlmi-providers-bc058e76b5379196462cda85b91e44bc45dfab34.tar.gz
openlmi-providers-bc058e76b5379196462cda85b91e44bc45dfab34.tar.xz
openlmi-providers-bc058e76b5379196462cda85b91e44bc45dfab34.zip
Use TimerManager where appropriate.
Diffstat (limited to 'src/python/openlmi/common/TimerManager.py')
-rw-r--r--src/python/openlmi/common/TimerManager.py2
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: