Fixed incompatible operator with Python 3.7 in latest patch to Addic7ed.

This commit is contained in:
morpheus65535 2021-09-03 19:19:02 -04:00
parent 37e9e251f0
commit caf01da2ed
1 changed files with 2 additions and 1 deletions

View File

@ -252,7 +252,8 @@ class Addic7edProvider(_Addic7edProvider):
type, media_id = link['href'].split('/')
if type == 'movie':
media_title = link.text
if match := re.search(r'(.+)\s\((\d{4})\)$', media_title):
match = re.search(r'(.+)\s\((\d{4})\)$', media_title)
if match:
media_name = match.group(1)
media_year = match.group(2)
if sanitize(media_name.lower()) == sanitize(movie.lower()) and media_year == str(year):