Skip to content

Commit

Permalink
Fix NZBMatrix search bug
Browse files Browse the repository at this point in the history
  • Loading branch information
midgetspy committed Dec 22, 2010
1 parent f7aeece commit 83b5d78
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions sickbeard/sceneHelpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,9 @@ def makeSceneSeasonSearchString (show, segment, extraSearchType=None):
toReturn.append('"'+curShow+'"')

if extraSearchType == "nzbmatrix":
toReturn = ['+('+','.join(toReturn)+')', '+('+','.join(term_list)+')']

toReturn = ['+('+','.join(toReturn)+')']
if term_list:
toReturn.append('+('+','.join(term_list)+')')
return toReturn


Expand Down

0 comments on commit 83b5d78

Please sign in to comment.