some more output when no pending and after rename

This commit is contained in:
simon 2021-05-09 21:22:57 +07:00
parent a1774bb0b6
commit 112a909c90
1 changed files with 2 additions and 0 deletions

View File

@ -227,6 +227,7 @@ def main():
handler = MovieHandler()
# check if pending
if not handler.pending:
print('no movies to sort')
return
to_rename = handler.move_to_sort()
# identify
@ -238,4 +239,5 @@ def main():
renamed = handler.rename_files(identified)
if renamed:
moved = handler.move_to_archive(identified)
print(f'renamed {moved} movies')
handler.cleanup(moved)