shortening logoutput to just new_file_name

This commit is contained in:
simon 2021-05-29 17:56:34 +07:00
parent 5f69b22efe
commit cbe6a4d77f
1 changed files with 3 additions and 1 deletions

View File

@ -356,7 +356,9 @@ class TvHandler():
os.rename(old_file, new_file)
# finish up
renamed.append(new_file)
logging.info('tv:from [%s] to [%s]', episode.filename, new_file)
logging.info(
'tv:from [%s] to [%s]', episode.filename, new_file_name
)
return renamed
def move_to_archive(self):