Skip to content

Commit ae0ecbb

Browse files
Judpkittenis
authored andcommitted
Fix missing comma
1 parent 5b4020e commit ae0ecbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pssh.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def __init__(self, hosts,
120120
self.hosts = hosts
121121

122122
# Initialise connections to all hosts
123-
self.host_clients = dict((host[0], SSHClient(host[0], user=host[1] password=host[2])) for host in hosts)
123+
self.host_clients = dict((host[0], SSHClient(host[0], user=host[1], password=host[2])) for host in hosts)
124124

125125
def exec_command(self, *args, **kwargs):
126126
"""Run command on all hosts in parallel, honoring self.pool_size"""

0 commit comments

Comments
 (0)