From 98f374695ae584cecdc36dfd6946f2ea8324abf5 Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Mon, 8 Sep 2008 13:11:09 -0400 Subject: Fix saving to remote hosts (#461500). --- exception.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'exception.py') 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(":") -- cgit