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 2019/11/26 21:45:45 UTC

[whimsy] branch master updated: Allow for mixed Strings and Symbols

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 2fab98b  Allow for mixed Strings and Symbols
2fab98b is described below

commit 2fab98bbce045364b181c2cf283f551632d0e546
Author: Sebb <se...@apache.org>
AuthorDate: Tue Nov 26 21:44:54 2019 +0000

    Allow for mixed Strings and Symbols
---
 www/secretary/icla-parse.cgi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www/secretary/icla-parse.cgi b/www/secretary/icla-parse.cgi
index 1f139db..418eecc 100755
--- a/www/secretary/icla-parse.cgi
+++ b/www/secretary/icla-parse.cgi
@@ -29,7 +29,7 @@ begin
   
   path = message.find(iclaname).as_file.path
   
-  ICLAParser.parse(path).sort_by{|k,v| k}.each do |k,v|
+  ICLAParser.parse(path).sort_by{|k,v| k.to_s }.each do |k,v|
     puts "%-20s %s" % [k,v]
   end