summaryrefslogtreecommitdiffstats
path: root/exception.py
diff options
context:
space:
mode:
Diffstat (limited to 'exception.py')
-rw-r--r--exception.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/exception.py b/exception.py
index e4e7c08ae..b146315aa 100644
--- a/exception.py
+++ b/exception.py
@@ -89,6 +89,9 @@ class AnacondaExceptionDump:
pad = ' ' * ((level) * 2)
for key, value in instance.__dict__.items():
+ if key.startswith("_%s__" % instance.__class__.__name__):
+ continue
+
if parentkey != "":
curkey = parentkey + "." + key
else: