Skip to content

Commit

Permalink
Update sftp_notice_publisher.py
Browse files Browse the repository at this point in the history
  • Loading branch information
CaptainOfHacks committed Nov 17, 2023
1 parent a96dbeb commit 1345b68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ted_sws/notice_publisher/adapters/sftp_notice_publisher.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def connect(self):

ssh_client = paramiko.SSHClient()
ssh_client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh_client.connect(self.hostname, username=self.username,
ssh_client.connect(self.hostname, username=self.username, password=self.password,
pkey=self.private_key, port=self.port)
self._ssh = ssh_client
self._sftp = ssh_client.open_sftp()
Expand Down

0 comments on commit 1345b68

Please sign in to comment.