From a3a9567f46bfcd3a9e2d635bd8b91ccb78153d2f Mon Sep 17 00:00:00 2001 From: Joey Hafner Date: Tue, 21 Nov 2023 08:39:04 -0800 Subject: [PATCH] Refix script --- homelab/fighter/scripts/remove_trumped_torrents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homelab/fighter/scripts/remove_trumped_torrents.py b/homelab/fighter/scripts/remove_trumped_torrents.py index 8067c309..ebd8c041 100644 --- a/homelab/fighter/scripts/remove_trumped_torrents.py +++ b/homelab/fighter/scripts/remove_trumped_torrents.py @@ -2,7 +2,7 @@ host = input("Enter host (e.g. 'localhost:8080'): ") username = input("Enter username: ") password = input("Enter password: ") -from qbittorrent-api import Client +import qbittorrentapi client = Client(host=host, username=username, password=password) torrent_list = client.torrents.info()