Compare commits

...

2 Commits

Author SHA1 Message Date
Pranjal
4fac33a518
Merge 8dcf49c58e into 9177c8b007 2025-04-01 07:23:49 -04:00
Pranjal
8dcf49c58e Delete media based on file size 2023-07-13 10:46:35 -05:00

View File

@ -807,6 +807,8 @@ if __name__ == '__main__':
if opts.action == "show":
action_show(size_lst, opts.select, opts.date)
elif opts.action == 'delete':
plex_deletion(size_lst, libraries, opts.toggleDeletion)
else:
print("Size must end with one of these notations: {}".format(", ".join(UNTIS.keys())))
pass