diff --git a/mediaweb/shows.py b/mediaweb/shows.py index 0fbac27..af79f0e 100644 --- a/mediaweb/shows.py +++ b/mediaweb/shows.py @@ -12,7 +12,7 @@ from collections import namedtuple NORMAL_SEASON_EP_RE = re.compile(r'(([sS]([0-9]{2}))x?([eE]([0-9]{2}))?)') # match something like s01e02 NORMAL_SEASON_EP_RE2 = re.compile(r'(([0-9]+)[xX]([0-9]{2}))') # match something like 21x04 -DATE_SEASON_EP_RE = re.compile(r'((201[0-9]).([0-9]{1,2})?.([0-9]{1,2})?)') # match something like 2017-08-3 +DATE_SEASON_EP_RE = re.compile(r'((20[1,2][0-9]).([0-9]{1,2})?.([0-9]{1,2})?)') # match something like 2017-08-3 COMMON_CRAP = [re.compile(i, flags=re.I) for i in [r'(720|1080)p', r'hdtv',