You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by Sebastian Bazley <se...@apache.org> on 2016/02/16 04:05:45 UTC

[whimsy.git] [1/1] Commit 582b468: Fix broken output, turn array back to hash

Commit 582b468023ae8eec3d9d9cda31769f146d0c80f0:
    Fix broken output, turn array back to hash


Branch: refs/heads/master
Author: Sebb <se...@apache.org>
Committer: Sebb <se...@apache.org>
Pusher: sebb <se...@apache.org>

------------------------------------------------------------
www/roster/public_icla_info.rb                               | + -
------------------------------------------------------------
2 changes: 1 additions, 1 deletions.
------------------------------------------------------------


diff --git a/www/roster/public_icla_info.rb b/www/roster/public_icla_info.rb
index 0c37ef4..1822976 100644
--- a/www/roster/public_icla_info.rb
+++ b/www/roster/public_icla_info.rb
@@ -16,7 +16,7 @@
 
 info = {
   last_updated: ASF::ICLA.svn_change,
-  committers: ids.sort,
+  committers: Hash[ids.sort],
   non_committers: noid # do not sort because the input is already sorted by surname
 }