diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-10-04 22:23:26 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-10-04 22:23:26 +0300 |
commit | adbc8f79557ba7ffef018ac43010b3cfe3b642d9 (patch) | |
tree | 5b4a448a196a96f5fbcccdd650ac598f8828c737 /parsers/people.py | |
parent | da10605d758ebe36d57884e3f94620bbdb2e34da (diff) | |
download | troggle-adbc8f79557ba7ffef018ac43010b3cfe3b642d9.tar.gz troggle-adbc8f79557ba7ffef018ac43010b3cfe3b642d9.tar.bz2 troggle-adbc8f79557ba7ffef018ac43010b3cfe3b642d9.zip |
disambiguating names on wallets
Diffstat (limited to 'parsers/people.py')
-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(): |