From adbc8f79557ba7ffef018ac43010b3cfe3b642d9 Mon Sep 17 00:00:00 2001 From: Philip Sargent Date: Wed, 4 Oct 2023 22:23:26 +0300 Subject: disambiguating names on wallets --- parsers/people.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'parsers/people.py') 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(): -- cgit v1.2.3