Instantiate mutators when a mutated module is created / loaded from DB. Some bug fixes for a few things.

This commit is contained in:
blitzmann
2018-06-10 01:10:53 -04:00
parent fe47ebd1f5
commit e8b56b076b
7 changed files with 69 additions and 14 deletions

View File

@@ -112,7 +112,7 @@ class ModifiedAttributeDict(collections.MutableMapping):
@property
def mutators(self):
return {x.attr.name: x for x in self.__mutators}
return {x.attr.name: x for x in self.__mutators.values()}
@mutators.setter
def mutators(self, val):