Browse Source

Delete useless blank space

Matteo Bonamassa 4 years ago
parent
commit
9e57c832f6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      xfreerdpctl

+ 1 - 1
xfreerdpctl

@@ -62,7 +62,7 @@ class Host(Thread):
 
     def sshcommand(self, command):
         if self.up:
-            ssh = subprocess.Popen( ["ssh", "%s" % self.hostname, command], shell = False, stdout = subprocess.PIPE, stderr = subprocess.PIPE , universal_newlines=True)
+            ssh = subprocess.Popen( ["ssh", "%s" % self.hostname, command], shell = False, stdout = subprocess.PIPE, stderr = subprocess.PIPE, universal_newlines=True)
             return ssh
         else:
             print(self.hostname + ' is not up.')