strip year from tv showfilenma end only

This commit is contained in:
simon 2023-02-12 11:15:01 +07:00
parent 9b41a808f1
commit ea0c766afc
Signed by: simon
GPG Key ID: 2C15AA5E89985DD4
1 changed files with 1 additions and 4 deletions

View File

@ -76,10 +76,7 @@ class Static:
year_pattern = re.compile(r'\(?[0-9]{4}\)?') year_pattern = re.compile(r'\(?[0-9]{4}\)?')
year = year_pattern.findall(showname) year = year_pattern.findall(showname)
if year and year[0] != showname: if year and year[0] != showname:
words = showname.split() showname = showname.rstrip(year[0]).strip()
words.remove(year[0])
if len(words) > 1:
showname = showname.replace(year[0], '').replace("..", ".")
# find acronym # find acronym
acronym = [i for i in showname.split(".") if len(i) == 1] acronym = [i for i in showname.split(".") if len(i) == 1]
# clean up # clean up