diff options
Diffstat (limited to 'python/process_queue.py')
| -rw-r--r-- | python/process_queue.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/process_queue.py b/python/process_queue.py index 5ef6fff3..a588cea8 100644 --- a/python/process_queue.py +++ b/python/process_queue.py @@ -874,9 +874,9 @@ def upload_file(file_path: pathlib.Path) -> None: ftp.storbinary(cmd, fh) elif file_path.name.startswith("Bowdst"): sftp = get_sftp_client(**load_credentials("bony")) - sftp.chdir("/inbound/cfe") + sftp.chdir("/inbound/cfe/") with file_path.open("rb") as fh: - sftp.putfo(fh, file_path.name) + sftp.putfo(fh, f"LMC01CFE.{file_path.name}") def write_buffer( |
