This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new cf4c0fe3 Ignore misspelt name
cf4c0fe3 is described below
commit cf4c0fe3eb132afa5ddbc9d2755cee15b8ba2617
Author: Sebb <[email protected]>
AuthorDate: Wed Feb 21 20:34:38 2024 +0000
Ignore misspelt name
---
www/members/nominations.cgi | 1 +
1 file changed, 1 insertion(+)
diff --git a/www/members/nominations.cgi b/www/members/nominations.cgi
index ab0a5d39..2df48bfc 100755
--- a/www/members/nominations.cgi
+++ b/www/members/nominations.cgi
@@ -83,6 +83,7 @@ def create_match(nominee)
names << pname.delete('.')
names << pname.sub(%r{ [A-Z] }, ' ') # drop initial
names << pname.sub(/\bChristo(ph|f)er\b/, 'Chris') # Special
+ names << 'Lukasz Dywick' if pname == 'Lukasz Dywicki' # special
personname = ASF::Person.find(nominee[:id]).public_name
names << ASF::Person.asciize(personname, nil) if personname
list = names.uniq.map {|name| Regexp.escape(name)}.join('|')