summaryrefslogtreecommitdiffstats
path: root/src/Gui/CCDumpList.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/Gui/CCDumpList.py')
-rw-r--r--src/Gui/CCDumpList.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Gui/CCDumpList.py b/src/Gui/CCDumpList.py
index c962f217..3c555d84 100644
--- a/src/Gui/CCDumpList.py
+++ b/src/Gui/CCDumpList.py
@@ -19,7 +19,7 @@ class DumpList(list):
entry = Dump()
for column in row:
log2(" Dump.%s='%s'", column, row[column])
- entry.__dict__[column] = row[column]
+ entry.__setattr__(column, row[column])
self.append(entry)
except Exception:
# FIXME handle exception better