From d3077f0d1c9945a1b2fa4e772549b0e46e125c35 Mon Sep 17 00:00:00 2001
From: Csók Tamás <godhak@gmail.com>
Date: Wed, 3 Sep 2014 18:21:22 +0200
Subject: [PATCH] client: corrected ssh connection typo

---
 src/iss/installer/cloud_connect_from_windows.py | 2 +-
 src/python/cloud_connect_from_windows.py        | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/iss/installer/cloud_connect_from_windows.py b/src/iss/installer/cloud_connect_from_windows.py
index c378119..dbbc437 100644
--- a/src/iss/installer/cloud_connect_from_windows.py
+++ b/src/iss/installer/cloud_connect_from_windows.py
@@ -30,7 +30,7 @@ def connect(vm):
     """
     if vm.protocol == "SSH":
         arguments = ("-ssh -P %s -pw %s" % (vm.port, vm.password)
-                     + "%s@%s" % (vm.user, vm.host))
+                     + " %s@%s" % (vm.user, vm.host))
         subprocess.Popen("putty.exe "+arguments, shell=True)
     elif vm.protocol == "NX":
         listdir = os.path.expanduser("~\\.nx\\config\\*.nxs")
diff --git a/src/python/cloud_connect_from_windows.py b/src/python/cloud_connect_from_windows.py
index c378119..dbbc437 100644
--- a/src/python/cloud_connect_from_windows.py
+++ b/src/python/cloud_connect_from_windows.py
@@ -30,7 +30,7 @@ def connect(vm):
     """
     if vm.protocol == "SSH":
         arguments = ("-ssh -P %s -pw %s" % (vm.port, vm.password)
-                     + "%s@%s" % (vm.user, vm.host))
+                     + " %s@%s" % (vm.user, vm.host))
         subprocess.Popen("putty.exe "+arguments, shell=True)
     elif vm.protocol == "NX":
         listdir = os.path.expanduser("~\\.nx\\config\\*.nxs")
--
libgit2 0.26.0