From 662b5e83cfa103fc3aed86c194b2fa2c6b9424d8 Mon Sep 17 00:00:00 2001 From: Raymond Wagner Date: Thu, 25 Oct 2012 15:16:38 -0400 Subject: [PATCH] Tweak DictData behavior to properly function with Properties. --- mythtv/bindings/python/MythTV/altdict.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mythtv/bindings/python/MythTV/altdict.py b/mythtv/bindings/python/MythTV/altdict.py index b90192c0f2d..0b326d7bcf7 100644 --- a/mythtv/bindings/python/MythTV/altdict.py +++ b/mythtv/bindings/python/MythTV/altdict.py @@ -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