From cd30989825cd7c8f25bad2343aa384e0de03b909 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Fri, 30 Nov 2007 13:57:37 -0500 Subject: fix references to point to the device we created earlier --- exception.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'exception.py') diff --git a/exception.py b/exception.py index 5c7ef9c96..cb6a60328 100644 --- a/exception.py +++ b/exception.py @@ -291,11 +291,11 @@ def copyExceptionToDisk(anaconda, device): if os.access("/sbin/mkdosfs", os.X_OK): cmd = "/sbin/mkdosfs" - iutil.execWithRedirect (cmd, ["/tmp/floppy"], stdout = '/dev/tty5', + iutil.execWithRedirect (cmd, [file], stdout = '/dev/tty5', stderr = '/dev/tty5') try: - isys.mount(device, "/tmp/crash", fstype = "vfat") + isys.mount(file, "/tmp/crash", fstype = "vfat") except SystemError: return False -- cgit