summaryrefslogtreecommitdiffstats
path: root/rescue.py
diff options
context:
space:
mode:
authormsivak <msivak>2007-08-17 14:20:44 +0000
committermsivak <msivak>2007-08-17 14:20:44 +0000
commit70b7adb020841583ee06e85bb5f14403827fbc5d (patch)
tree18d10a56bcf21b22e1e79100e8c0a4c70f2128fd /rescue.py
parent703ab4ed04634d032a50760c129aa8e5f41574ca (diff)
downloadanaconda-70b7adb020841583ee06e85bb5f14403827fbc5d.tar.gz
anaconda-70b7adb020841583ee06e85bb5f14403827fbc5d.tar.xz
anaconda-70b7adb020841583ee06e85bb5f14403827fbc5d.zip
* iutil.py (makeDriveDeviceNodes): Fix number of created scsi
partition device files (#241439). * fsset.py (DevDevice.setupDevice): Better error reporting and when using DevDevice class, check for existence of device file. * rescue.py (runRescue): Better error reporting.
Diffstat (limited to 'rescue.py')
-rw-r--r--rescue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rescue.py b/rescue.py
index 6781e27f0..4253d529e 100644
--- a/rescue.py
+++ b/rescue.py
@@ -433,7 +433,7 @@ def runRescue(anaconda, instClass):
# errors raise exceptions, while any runtime error will
# still result in a shell
(exc, val) = sys.exc_info()[0:2]
- log.error(val)
+ log.error(str(exc)+": "+str(val))
if exc in (IndexError, ValueError, SyntaxError):
raise exc, val, sys.exc_info()[2]