diff --git a/rssbot.py b/rssbot.py index 9757ea7..c160676 100644 --- a/rssbot.py +++ b/rssbot.py @@ -833,7 +833,11 @@ class updateThread(Thread): self._main = main def run(self): + t = None while True: + if t is not None and time() - t < 0.1: + sleep(0.1) + t = time() self._main._updateLoop()