You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by se...@apache.org on 2021/02/19 23:44:45 UTC

[whimsy] branch master updated: '*' is not a prefix, so space it out

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 3bdb49c  '*' is not a prefix, so space it out
3bdb49c is described below

commit 3bdb49c9c86870c0a1da3e27abd9f2a29bf426af
Author: Sebb <se...@apache.org>
AuthorDate: Fri Feb 19 23:44:36 2021 +0000

    '*' is not a prefix, so space it out
---
 www/members/proxy.cgi | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/www/members/proxy.cgi b/www/members/proxy.cgi
index 2ea553d..5e63ca9 100755
--- a/www/members/proxy.cgi
+++ b/www/members/proxy.cgi
@@ -163,16 +163,16 @@ def emit_post(cur_mtg_dir, meeting, _)
   # update proxy form (match as many _ as possible up to the name length)
   proxy[/authorize _(_{,#{@proxy.length}})/, 1] = @proxy.gsub(' ', '_')
 
-  proxy[/signature: _(_#{'_' *user.public_name.length}_)/, 1] =
+  proxy[/signature: _(_#{'_' * user.public_name.length}_)/, 1] =
     "/#{user.public_name.gsub(' ', '_')}/"
 
-  proxy[/name: _(#{'_' *user.public_name.length})/, 1] =
+  proxy[/name: _(#{'_' * user.public_name.length})/, 1] =
     user.public_name.gsub(' ', '_')
 
-  proxy[/availid: _(#{'_' *user.id.length})/, 1] =
+  proxy[/availid: _(#{'_' * user.id.length})/, 1] =
     user.id.gsub(' ', '_')
 
-  proxy[/Date: _(#{'_' *date.length})/, 1] = date.gsub(' ', '_')
+  proxy[/Date: _(#{'_' * date.length})/, 1] = date.gsub(' ', '_')
 
   proxyform = proxy