Depend on the function to write a temporary file

This commit is contained in:
tcely 2024-12-19 21:34:28 -05:00 committed by GitHub
parent 72e4095354
commit 4f56ebd1ce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1567,9 +1567,7 @@ class Media(models.Model):
# The thumbpath inside the .nfo file may have changed
if self.source.write_nfo and self.source.copy_thumbnails:
nfo_path_tmp = Path(str(self.nfopath) + '.tmp')
write_text_file(nfo_path_tmp, self.nfoxml)
nfo_path_tmp.replace(new_prefix_path / self.nfopath.name)
write_text_file(new_prefix_path / self.nfopath.name, self.nfoxml)
# try to remove empty dirs
parent_dir = old_video_path.parent