From 31c953d6981ce24e974c53ecb8c57cf891eec3a4 Mon Sep 17 00:00:00 2001 From: jblu Date: Fri, 22 Jul 2022 23:46:48 -0500 Subject: [PATCH] tweaks to the main file --- qbit-maid.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/qbit-maid.py b/qbit-maid.py index 84cdefb..293054c 100644 --- a/qbit-maid.py +++ b/qbit-maid.py @@ -14,6 +14,8 @@ class Qbt: # Open the config. Needs a json file with the data in config.json.example c = open('./config.json') self.config = load(c) + w = open('./config.json') + self.cat_whitelist = load(w) # Create the api object self.qbt_client = qbittorrentapi.Client( host=self.config["host"], @@ -69,7 +71,7 @@ class Qbt: printprocessor(self) if self.use_pushover: tornotifysummary(self) - #tordelete(self) + tordelete(self) # Run if __name__== "__main__":