From 7b40a7ad55b4d4aa90b0f53c9e2a2c3351fdf666 Mon Sep 17 00:00:00 2001 From: Bram Gillemon Date: Wed, 14 Feb 2024 23:04:08 +0100 Subject: [PATCH] was renamed to get_files 16 Nov 2022 --- transmission_to_plex/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transmission_to_plex/main.py b/transmission_to_plex/main.py index 02bb1da..4f4095f 100644 --- a/transmission_to_plex/main.py +++ b/transmission_to_plex/main.py @@ -15,7 +15,7 @@ def run(self): completed_torrents = [t for t in self.client.get_torrents() if t.progress == 100.0] for torrent in completed_torrents: - type_of_torrent = classifier.classify_downloaded_content(torrent.files()) + type_of_torrent = classifier.classify_downloaded_content(torrent.get_files()) self.move_files_to_plex_folder(torrent, type_of_torrent) self.client.remove_torrent([torrent.id])