From e400bf7a5df146f74276522b9517bf6ab636f0d9 Mon Sep 17 00:00:00 2001 From: evilhero Date: Thu, 2 Mar 2017 13:12:05 -0500 Subject: [PATCH] FIX:(#1578) Fix for error when torrents are searched against, but blackhole method is enabled --- mylar/search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mylar/search.py b/mylar/search.py index feb59d61..2e351979 100755 --- a/mylar/search.py +++ b/mylar/search.py @@ -1876,7 +1876,7 @@ def nzbname_create(provider, title=None, info=None): # it searches nzblog which contains the nzbname to pull out the IssueID and start the post-processing # it is also used to keep the hashinfo for the nzbname in case it fails downloading, it will get put into the failed db for future exclusions - if mylar.USE_BLACKHOLE and any([provider != '32P', provider != 'TPSE', provider != 'WWT', provider != 'DEM']): + if mylar.USE_BLACKHOLE and all([provider != '32P', provider != 'TPSE', provider != 'WWT', provider != 'DEM']): if os.path.exists(mylar.BLACKHOLE_DIR): #load in the required info to generate the nzb names when required (blackhole only) ComicName = info[0]['ComicName']