From 0a38f321f9a56a92e8c8638dbf0d57d50fc9e65e Mon Sep 17 00:00:00 2001 From: Joey Hafner Date: Tue, 21 Nov 2023 08:39:04 -0800 Subject: [PATCH] Refix script --- fighter/scripts/remove_trumped_torrents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fighter/scripts/remove_trumped_torrents.py b/fighter/scripts/remove_trumped_torrents.py index 8067c30..ebd8c04 100644 --- a/fighter/scripts/remove_trumped_torrents.py +++ b/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()