Add "De" as unwanted title prefix

This commit is contained in:
Yohann D'ANELLO 2020-09-26 11:45:31 +02:00
parent 4198ea8a72
commit be76bf4857
1 changed files with 1 additions and 0 deletions

View File

@ -38,6 +38,7 @@ class Command(BaseCommand):
if all(not unicodedata.category(char).startswith(cat)
for cat in {'M', 'P', 'Z', 'C'}) or char == ' '
).casefold().upper()
title_normalized = re.sub(r'^DE ', '', title_normalized)
title_normalized = re.sub(r'^LE ', '', title_normalized)
title_normalized = re.sub(r'^LA ', '', title_normalized)
title_normalized = re.sub(r'^LES ', '', title_normalized)