Skip to content

Commit

Permalink
Tweak DictData behavior to properly function with Properties.
Browse files Browse the repository at this point in the history
  • Loading branch information
wagnerrp committed Oct 25, 2012
1 parent 4646e7f commit 662b5e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/bindings/python/MythTV/altdict.py
Expand Up @@ -117,7 +117,7 @@ def __setattr__(self, name, value):
if name in self._localvars:
self.__dict__[name] = value
elif name not in self._field_order:
self.__dict__[name] = value
object.__setattr__(self, name, value)
else:
try:
self[name] = value
Expand Down

0 comments on commit 662b5e8

Please sign in to comment.