From ff2e1ad9e9eb98328d89c37c22c3e96cb121085b Mon Sep 17 00:00:00 2001 From: Jean <> Date: Fri, 7 Apr 2023 14:15:39 +0200 Subject: [PATCH] change transmission client to transmission 3.00 --- code/process_torrent.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/process_torrent.py b/code/process_torrent.py index 6e91a2c..5fc9e03 100644 --- a/code/process_torrent.py +++ b/code/process_torrent.py @@ -1,5 +1,5 @@ from code.decoding_bencoded import bencoding -from code.torrentclientfactory import Transmission292 +from code.torrentclientfactory import Transmission300 from code.pretty import pretty_data, pretty_GET from hashlib import sha1 @@ -19,7 +19,7 @@ class process_torrent(): def __init__(self, configuration): self.configuration = configuration self.open_torrent() - self.torrentclient = Transmission292(self.tracker_info_hash()) + self.torrentclient = Transmission300(self.tracker_info_hash()) def open_torrent(self): torrent_file = self.configuration['torrent']