Include M. in the skipped titles

- Legacy-Id: 3899
This commit is contained in:
Ole Laursen 2012-02-03 15:35:40 +00:00
parent 67d3546564
commit 5c66a91c0e

View file

@ -22,7 +22,7 @@ def person_name(person):
if n in [".", "Mr.", "<s/", "e", "fas", "lk", "Miss", "Mr", "Mr,", "Mr.", "Mr..", "MRS", "Mrs.", "ms", "Ms,", "Ms.", "Ms. L", "mw", "prefix", "q", "qjfglesjtg", "s", "te mr", "\Mr.", "M.", "M"]:
return "" # skip
fixes = { "Dr": "Dr.", "Lt.Colonel": "Lt. Col.", "M": "M.", "Prof": "Prof.", "Prof.Dr.": "Prof. Dr.", "Professort": "Professor" }
fixes = { "Dr": "Dr.", "Lt.Colonel": "Lt. Col.", "Prof": "Prof.", "Prof.Dr.": "Prof. Dr.", "Professort": "Professor" }
return fixes.get(n, n)
def clean_suffix(n):