Skip to content

Commit

Permalink
Merge 2cd11f4 into 7a94738
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Rybalko committed Feb 18, 2015
2 parents 7a94738 + 2cd11f4 commit 911cced
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions concert/base.py
Expand Up @@ -9,6 +9,7 @@
from concert.helpers import memoize
from concert.async import async, wait, busy_wait
from concert.quantities import q
from concert.async import dispatcher


LOG = logging.getLogger(__name__)
Expand Down Expand Up @@ -315,6 +316,7 @@ def __set__(self, instance, value):
msg = "set {}::{}='{}'"
name = instance.__class__.__name__
LOG.info(msg.format(name, self.name, value))
dispatcher.send(instance, "value_changed")
except KeyboardInterrupt:
cancel_name = '_cancel_' + self.name
if hasattr(instance, cancel_name):
Expand Down

0 comments on commit 911cced

Please sign in to comment.