Update client/ayon_core/lib/file_transaction.py

Co-authored-by: Roy Nieterau <roy_nieterau@hotmail.com>
This commit is contained in:
r42-chun 2025-02-04 10:23:35 +00:00 committed by GitHub
parent 4bca62dcfe
commit 8dae70ab59
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -146,7 +146,7 @@ class FileTransaction:
self.log.debug(f"Copying file ... {src} -> {dst}")
copyfile(src, dst)
elif opts["mode"] == self.MODE_HARDLINK:
self.log.debug("Hardlinking file ... {} -> {}".format(src, dst))
self.log.debug(f"Hardlinking file ... {src} -> {dst}")
create_hard_link(src, dst)
self._transferred.append(dst)