Skip to content

Commit

Permalink
Fixed attribute setting on Parameter objects
Browse files Browse the repository at this point in the history
  • Loading branch information
jlstevens committed Sep 21, 2018
1 parent 99a6af9 commit 2866e0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion param/parameterized.py
Expand Up @@ -514,7 +514,7 @@ def __setattr__(self,attribute,value):
if old is not NotImplemented:
change = Change(what=attribute,name=self._attrib_name,obj=None,cls=self._owner,old=old,new=value)
for subscriber in self.subscribers[attribute]:
self.param._call_subscriber(subscriber, change)
self._owner.param._call_subscriber(subscriber, change)


def __get__(self,obj,objtype): # pylint: disable-msg=W0613
Expand Down

0 comments on commit 2866e0e

Please sign in to comment.