X-Git-Url: https://git.kaliko.me/?a=blobdiff_plain;f=sima%2Fplugins%2Fcore%2Fhistory.py;h=6c3ad907ce6a5c19ed453f6a42dea50104656426;hb=67d87e47012b5d3ceba56bdff06a0fa406f4840b;hp=4876eba3b4c61a6adb6d17c1850d4869506d0f83;hpb=faf3ee6255dc9f21d4286f462179dedef7ee85da;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()