FIX:(#1578) Fix for error when torrents are searched against, but blackhole method is enabled

This commit is contained in:
evilhero 2017-03-02 13:12:05 -05:00
parent d909435f1f
commit e400bf7a5d
1 changed files with 1 additions and 1 deletions

View File

@ -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']