summaryrefslogtreecommitdiffstats
path: root/exception.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-09-08 13:11:09 -0400
committerChris Lumens <clumens@redhat.com>2008-09-08 13:11:09 -0400
commit98f374695ae584cecdc36dfd6946f2ea8324abf5 (patch)
tree23fe21f5ef0ef2f5abbd8f96df59d8263d52c3ca /exception.py
parent86d58d6ffd25892fd84ce4aa57ca52ad7c73d647 (diff)
downloadanaconda-98f374695ae584cecdc36dfd6946f2ea8324abf5.tar.gz
anaconda-98f374695ae584cecdc36dfd6946f2ea8324abf5.tar.xz
anaconda-98f374695ae584cecdc36dfd6946f2ea8324abf5.zip
Fix saving to remote hosts (#461500).
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 571a79ea1..119aca396 100644
--- a/exception.py
+++ b/exception.py
@@ -254,7 +254,7 @@ def scpAuthenticate(master, childpid, password):
def copyExceptionToRemote(intf, scpInfo):
import pty
- (host, path, user, password) = scpInfo
+ (user, password, host, path) = scpInfo
if host.find(":") != -1:
(host, port) = host.split(":")