prep for German mpaa rating FSK

This commit is contained in:
angelblue05 2016-09-18 01:24:07 -05:00
parent c1e1f16e26
commit c58e4d84e7
1 changed files with 3 additions and 0 deletions

View File

@ -349,6 +349,9 @@ class API(object):
# Kodi seems to not like NR, but will accept Not Rated # Kodi seems to not like NR, but will accept Not Rated
mpaa = "Not Rated" mpaa = "Not Rated"
if "FSK-" in mpaa:
mpaa = mpaa.replace("-", " ")
return mpaa return mpaa
def get_country(self): def get_country(self):