Skip to content

Commit

Permalink
update message
Browse files Browse the repository at this point in the history
  • Loading branch information
hpohekar committed Apr 24, 2024
1 parent 900c337 commit f16b8cc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ansys/fluent/core/utils/file_transfer_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,9 @@ def upload(
for file in files:
is_file_on_remote = self.file_exists_on_remote(os.path.basename(file))
if is_file_on_remote:
print(f"\n{file} already uploaded.\n")
print(
f"\n{file} with the same name exists at the remote location.\n"
)
elif os.path.isfile(file) and not is_file_on_remote:
self.client.upload_file(
local_filename=file,
Expand Down

0 comments on commit f16b8cc

Please sign in to comment.