Fix a wrongly called variable in ticherhandler.

This commit is contained in:
Griatch 2016-09-01 16:55:49 +02:00
parent 949aeee806
commit 9d00f1ddfd

View file

@ -194,7 +194,7 @@ class Ticker(object):
if self._is_ticking:
# protects the subscription dict from
# updating while it is looping
self._to_start.append((store_key, (args, kwargs)))
self._to_add.append((store_key, (args, kwargs)))
else:
start_delay = kwargs.pop("_start_delay", None)
self.subscriptions[store_key] = (args, kwargs)