Skip to content

Commit 1345b68

Browse files
Update sftp_notice_publisher.py
1 parent a96dbeb commit 1345b68

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ted_sws/notice_publisher/adapters/sftp_notice_publisher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def connect(self):
3434

3535
ssh_client = paramiko.SSHClient()
3636
ssh_client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
37-
ssh_client.connect(self.hostname, username=self.username,
37+
ssh_client.connect(self.hostname, username=self.username, password=self.password,
3838
pkey=self.private_key, port=self.port)
3939
self._ssh = ssh_client
4040
self._sftp = ssh_client.open_sftp()

0 commit comments

Comments
 (0)