Fix a wrongly called variable in ticherhandler.
This commit is contained in:
parent
949aeee806
commit
9d00f1ddfd
1 changed files with 1 additions and 1 deletions
|
|
@ -194,7 +194,7 @@ class Ticker(object):
|
||||||
if self._is_ticking:
|
if self._is_ticking:
|
||||||
# protects the subscription dict from
|
# protects the subscription dict from
|
||||||
# updating while it is looping
|
# updating while it is looping
|
||||||
self._to_start.append((store_key, (args, kwargs)))
|
self._to_add.append((store_key, (args, kwargs)))
|
||||||
else:
|
else:
|
||||||
start_delay = kwargs.pop("_start_delay", None)
|
start_delay = kwargs.pop("_start_delay", None)
|
||||||
self.subscriptions[store_key] = (args, kwargs)
|
self.subscriptions[store_key] = (args, kwargs)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue