X-Git-Url: http://git.kaliko.me/?a=blobdiff_plain;ds=sidebyside;f=sima%2Fplugins%2Fcore%2Fhistory.py;h=6c3ad907ce6a5c19ed453f6a42dea50104656426;hb=38d17f3c7dfcf2909ca1d6c17ec8483b8dd74a37;hp=4876eba3b4c61a6adb6d17c1850d4869506d0f83;hpb=e20b5bb3d83ad8630f85163df308270b1d0189cd;p=mpd-sima.git diff --git a/sima/plugins/core/history.py b/sima/plugins/core/history.py index 4876eba..6c3ad90 100644 --- a/sima/plugins/core/history.py +++ b/sima/plugins/core/history.py @@ -34,7 +34,6 @@ class History(Plugin): """ def __init__(self, daemon): Plugin.__init__(self, daemon) - self.sdb = daemon.sdb self._last_clean = time() def shutdown(self): @@ -52,7 +51,7 @@ class History(Plugin): return self.log.debug('add history: "%s"', current) self.sdb.add_history(current) - if self._last_clean - time() > 86400: + if time() - self._last_clean > 86400: self.shutdown() self._last_clean = time()