send an email when updating the SpaceAI consistently fails
[saartuer.git] / waker.py
index 4898c25ab31c0754f79699c97a0983477a8c23af..79eff81cd0f31e60a5c4216fae9d0f2f1e1b7d2e 100644 (file)
--- a/waker.py
+++ b/waker.py
@@ -21,7 +21,7 @@ class Waker():
                '''Register a function which is called approximately every <time> seconds (or just once, if one_shot is True). f should return quickly, or it will delay the waker!'''
                time = max(time//SLEEP_TIME, 1)
                with self._tobewokens_lock:
-                       self._tobewokens.append(ToBeWoken(f, time, 0, one_shot))
+                       self._tobewokens.append(ToBeWoken(f, time, one_shot))
        
        def _wake(self):
                with self._tobewokens_lock: