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/07/06 20:15:16 UTC

[whimsy] branch master updated: Show private list names as well

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 36d8471  Show private list names as well
36d8471 is described below

commit 36d84715f3c26c1cfcce8fb6f1eb1d419ba9f860
Author: Sebb <se...@apache.org>
AuthorDate: Tue Jul 6 21:15:07 2021 +0100

    Show private list names as well
---
 www/roster/public_committee_info.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www/roster/public_committee_info.rb b/www/roster/public_committee_info.rb
index a576628..75b8c76 100644
--- a/www/roster/public_committee_info.rb
+++ b/www/roster/public_committee_info.rb
@@ -162,7 +162,7 @@ if ARGV.length >= 2
 
   public_lists = Hash.new {|h,k| h[k]=Array.new}
   begin
-    ASF::MLIST.list_types do |dom, list, _|
+    ASF::MLIST.list_types(true) do |dom, list, _|
       public_lists[dom.sub(/\.apache\.org$/, '')] << list
     end
   rescue => e