diff options
author | Chris Lumens <clumens@redhat.com> | 2008-09-08 13:11:09 -0400 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2008-09-08 13:11:09 -0400 |
commit | 98f374695ae584cecdc36dfd6946f2ea8324abf5 (patch) | |
tree | 23fe21f5ef0ef2f5abbd8f96df59d8263d52c3ca /exception.py | |
parent | 86d58d6ffd25892fd84ce4aa57ca52ad7c73d647 (diff) | |
download | anaconda-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.py | 2 |
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(":") |