mirror of
https://github.com/evilhero/mylar
synced 2025-02-02 20:41:57 +00:00
FIX:(#360) Series with '-' unable to be searched for when downloading
This commit is contained in:
parent
2f31266866
commit
4613e215e9
1 changed files with 1 additions and 1 deletions
|
@ -314,7 +314,7 @@ def NZB_SEARCH(ComicName, IssueNumber, ComicYear, SeriesYear, nzbprov, nzbpr, Is
|
|||
#cm = re.sub("\&", "%26", str(cm1))
|
||||
cm = re.sub("\\band\\b", "", str(cm1)) # remove 'and' & '&' from the search pattern entirely (broader results, will filter out later)
|
||||
cm = re.sub("\\bthe\\b", "", cm.lower()) # remove 'the' from the search pattern to accomodate naming differences
|
||||
cm = re.sub("[\&\:\?\,\-]", "", str(cm))
|
||||
cm = re.sub("[\&\:\?\,]", "", str(cm))
|
||||
#print (cmi)
|
||||
if '.' in findcomiciss[findcount]:
|
||||
if len(str(isschk_b4dec)) == 3:
|
||||
|
|
Loading…
Reference in a new issue