subssabbz, subsunacs - fix inconsistent movie/tv naming

This commit is contained in:
josdion 2021-01-03 17:57:25 +02:00
parent 8f7c402259
commit 21b288308f
2 changed files with 5 additions and 0 deletions

View File

@ -40,6 +40,8 @@ def fix_tv_naming(title):
"Marvel's Jessica Jones": "Jessica Jones",
"DC's Legends of Tomorrow": "Legends of Tomorrow",
"Doctor Who (2005)": "Doctor Who",
"Star Trek: Deep Space Nine": "Star Trek DS9",
"Star Trek: The Next Generation": "Star Trek TNG",
}, True)

View File

@ -40,12 +40,15 @@ def fix_tv_naming(title):
"Marvel's Iron Fist": "Iron Fist",
"DC's Legends of Tomorrow": "Legends of Tomorrow",
"Doctor Who (2005)": "Doctor Who",
"Star Trek: Deep Space Nine": "Star Trek DS9",
"Star Trek: The Next Generation": "Star Trek TNG",
}, True)
def fix_movie_naming(title):
return fix_inconsistent_naming(title, {"Back to the Future Part III": "Back to the Future 3",
"Back to the Future Part II": "Back to the Future 2",
'Bill & Ted Face the Music': 'Bill Ted Face the Music',
}, True)