summaryrefslogtreecommitdiffstats
path: root/exception.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2006-01-13 19:02:15 +0000
committerChris Lumens <clumens@redhat.com>2006-01-13 19:02:15 +0000
commitd3cf1feb3dc3ea51772d9cf72115aae880c717ee (patch)
tree756b7a5523a2811fd123e48f62f5a3ea8a806351 /exception.py
parent841f26a9ad059303ea4d9710abf81f23a28d8cd2 (diff)
downloadanaconda-d3cf1feb3dc3ea51772d9cf72115aae880c717ee.tar.gz
anaconda-d3cf1feb3dc3ea51772d9cf72115aae880c717ee.tar.xz
anaconda-d3cf1feb3dc3ea51772d9cf72115aae880c717ee.zip
Take a filename from the user instead of assuming what we got was just a
directory (#177738).
Diffstat (limited to 'exception.py')
-rw-r--r--exception.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/exception.py b/exception.py
index 9b56db388..9b7171eaf 100644
--- a/exception.py
+++ b/exception.py
@@ -57,6 +57,7 @@ def dumpClass(instance, fd, level=0, parentkey=""):
"intf.ppw.ics.cw.id.keyboard._mods._modelDict",
"intf.ppw.ics.cw.id.rootPassword",
"intf.icw.stockButtons",
+ "intf.icw.id.bootloader.password",
"intf.icw.id.instLanguage.langInfoByName",
"intf.icw.id.instLanguage.nativeLangNames",
"intf.instLanguage.nativeLangNames",
@@ -258,7 +259,7 @@ def copyExceptionToRemote(intf):
# child process - run scp
args = ["scp", "-oNumberOfPasswordPrompts=1",
"-oStrictHostKeyChecking=no", "/tmp/anacdump.txt",
- "%s@%s:%s/anacdump.txt" % (user, host, path)]
+ "%s@%s:%s" % (user, host, path)]
os.execvp("scp", args)
# parent process