From 78d738a27cacd23f07597947a5e28d752d4fe38c Mon Sep 17 00:00:00 2001 From: jblu Date: Wed, 20 Jul 2022 14:20:25 -0500 Subject: [PATCH] added basic skipping for tech category --- qlist.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qlist.py b/qlist.py index bade55b..6dca844 100644 --- a/qlist.py +++ b/qlist.py @@ -11,6 +11,8 @@ def buildtorlist(self): torrent = self.torrentlist.pop() if self.use_log: self.tl.debug(f'{torrent["name"]} {torrent["infohash_v1"]}') + if torrent['category'] == 'tech': + break if torrent['tracker'] == '': if self.use_log: self.tl.warning(f"Torrent doesn't have a tracker{torrent['name']} [{torrent['tracker']}]hash: {torrent['hash']}")