diff options
Diffstat (limited to 'parsers')
-rw-r--r-- | parsers/people.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/parsers/people.py b/parsers/people.py index 0e4ca30..24e8378 100644 --- a/parsers/people.py +++ b/parsers/people.py @@ -196,6 +196,7 @@ foreign_friends = [ "K. Jäger", "Kai Schwekend", "Karl Gaisberger", + "Marcus Scheuermann", "Marcus Scheuerman", "Mark Morgan", "P. Jeutter", @@ -279,6 +280,11 @@ def GetPersonExpeditionNameLookup(expedition): if n: possnames += apply_variations(n, l) + if f == "Adeleide".lower(): + possnames += apply_variations("Adelaide", l) + if f == "Adelaide".lower(): + possnames += apply_variations("Adeleide", l) + if f == "Robert".lower(): possnames += apply_variations("Bob", l) if f == "Rob".lower(): @@ -303,6 +309,7 @@ def GetPersonExpeditionNameLookup(expedition): possnames += apply_variations("Andy", l) if f == "Andy".lower(): possnames += apply_variations("Andrew", l) + if f == "Michael".lower(): possnames += apply_variations("Mike", l) @@ -316,6 +323,11 @@ def GetPersonExpeditionNameLookup(expedition): if f == "Pete".lower(): possnames += apply_variations("Peter", l) + if f == "Tobias".lower(): + possnames += apply_variations("Toby", l) + if f == "Toby".lower(): + possnames += apply_variations("Tobias", l) + if f == "Olly".lower(): possnames += apply_variations("Oliver", l) if f == "Oliver".lower(): |