summaryrefslogtreecommitdiffstats
path: root/exception.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2003-07-29 20:11:29 +0000
committerMike Fulbright <msf@redhat.com>2003-07-29 20:11:29 +0000
commitb5539cfcf66069389a9e8f048aadbe8c7559a630 (patch)
tree32aaac4287901c62cca753f75e4be1aba29b3782 /exception.py
parent69ec2bc33b96bb2af7e38ae8e397c4b8fe2a3a89 (diff)
downloadanaconda-b5539cfcf66069389a9e8f048aadbe8c7559a630.tar.gz
anaconda-b5539cfcf66069389a9e8f048aadbe8c7559a630.tar.xz
anaconda-b5539cfcf66069389a9e8f048aadbe8c7559a630.zip
fix a problem which came up in bug #100473
Diffstat (limited to 'exception.py')
-rw-r--r--exception.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/exception.py b/exception.py
index 833c4e49a..c34b175ce 100644
--- a/exception.py
+++ b/exception.py
@@ -98,7 +98,7 @@ def dumpClass(instance, fd, level=0, parentkey=""):
fd.write("%s%s: {" % (pad, curkey))
first = 1
for k, v in value.items():
- newkey = curkey+"."+k
+ newkey = curkey+"."+str(k)
if newkey in keySkipList:
continue