FIX: fix for DDL provider throwing an error when searching and no issue number present (ala one-shot issue)

This commit is contained in:
evilhero 2019-02-02 17:11:09 -05:00
parent 99241f700a
commit 6b6ab8d285
1 changed files with 1 additions and 1 deletions

View File

@ -622,7 +622,7 @@ def NZB_SEARCH(ComicName, IssueNumber, ComicYear, SeriesYear, Publisher, IssueDa
if nzbprov == 'ddl':
cmname = re.sub("%20", " ", str(comsrc))
logger.fdebug('Sending request to DDL site for : %s %s' % (findcomic, isssearch))
b = getcomics.GC(query=findcomic + ' ' + isssearch)
b = getcomics.GC(query='%s %s' % (findcomic, isssearch))
bb = b.search()
#logger.info('bb returned from DDL: %s' % bb)
elif RSS == "yes":