mirror of
https://github.com/evilhero/mylar
synced 2025-03-15 08:18:44 +00:00
FIX: fix for DDL provider throwing an error when searching and no issue number present (ala one-shot issue)
This commit is contained in:
parent
99241f700a
commit
6b6ab8d285
1 changed files with 1 additions and 1 deletions
|
@ -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":
|
||||
|
|
Loading…
Add table
Reference in a new issue