Fixed compiled regex pattern ordering, fixes issues that where causing H.264 to be matched as S2E64

This commit is contained in:
echel0n 2014-06-24 06:48:00 -07:00
parent cec01405d8
commit cc6e9aa0f5
1 changed files with 6 additions and 2 deletions

View File

@ -15,6 +15,7 @@
#
# You should have received a copy of the GNU General Public License
# along with SickRage. If not, see <http://www.gnu.org/licenses/>.
from collections import OrderedDict
import re
import time
@ -95,12 +96,15 @@ class NameParser(object):
for regexItem in uncompiled_regex:
for regex_type, regex_pattern in regexItem.items():
i = 0
for (cur_pattern_name, cur_pattern) in regex_pattern:
i += 1
try:
cur_regex = re.compile(cur_pattern, re.VERBOSE | re.IGNORECASE)
except re.error, errormsg:
logger.log(u"WARNING: Invalid episode_pattern, %s. %s" % (errormsg, cur_pattern))
else:
cur_pattern_name = str(i) + "_" + cur_pattern_name
self.compiled_regexes[(regex_type, cur_pattern_name)] = cur_regex
def _parse_string(self, name):
@ -136,7 +140,7 @@ class NameParser(object):
elif self.showObj and not self.showObj.is_anime and not self.showObj.is_sports:
regexMode = self.NORMAL_REGEX
self.compiled_regexes = {}
self.compiled_regexes = OrderedDict()
self._compile_regexes(regexMode)
matches = []
@ -243,7 +247,7 @@ class NameParser(object):
matches.append(result)
if len(matches):
result = max(sorted(matches, reverse=True), key=lambda x: x.score)
result = max(matches, key=lambda x: x.score)
if result.show:
if self.convert and not self.naming_pattern: