summaryrefslogtreecommitdiffstats
path: root/exception.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-11-24 10:53:44 -0500
committerChris Lumens <clumens@redhat.com>2009-11-24 10:53:44 -0500
commit252701734c25cbc7356064f45b809f68b2a4fcdf (patch)
tree4080ab09d7c865564ce615be88b12a368224d4eb /exception.py
parent2fde9d0bf61af2dea407a220074c7e91da1b4f1a (diff)
downloadanaconda-252701734c25cbc7356064f45b809f68b2a4fcdf.tar.gz
anaconda-252701734c25cbc7356064f45b809f68b2a4fcdf.tar.xz
anaconda-252701734c25cbc7356064f45b809f68b2a4fcdf.zip
Fix killall -USR2 anaconda writing out a traceback file.
This hasn't worked since the switch to python-meh, though it's looked like it has worked. Before, dumpState would cause an exception because it hadn't been adapted to python-meh. This exception would then get written out as /tmp/anaconda-tb-*, which made dumpState look like it worked.
Diffstat (limited to 'exception.py')
-rw-r--r--exception.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/exception.py b/exception.py
index 7decf220f..b6356ad39 100644
--- a/exception.py
+++ b/exception.py
@@ -125,3 +125,5 @@ def initExceptionHandling(anaconda):
"/proc/cmdline"])
handler = AnacondaExceptionHandler(conf, anaconda.intf, ReverseExceptionDump)
handler.install(anaconda)
+
+ return conf