You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by ru...@apache.org on 2018/04/06 19:06:44 UTC

[whimsy] 01/02: sort meetings

This is an automated email from the ASF dual-hosted git repository.

rubys pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git

commit 4b995bd4c79aaee3c27ba85e594d5b4a1e309450
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Fri Apr 6 14:36:01 2018 -0400

    sort meetings
---
 tools/agenda_summary.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/agenda_summary.rb b/tools/agenda_summary.rb
index 147d7c2..79ce240 100644
--- a/tools/agenda_summary.rb
+++ b/tools/agenda_summary.rb
@@ -15,7 +15,7 @@ STATS_ROLLUP = 'stats'
 # @return stats hash of of various statistics from minutes
 def summarize_all(dir = BOARD)
   summaries = Hash.new{|h,k| h[k] = {} }
-  Dir[File.join(dir, 'archived_agendas', "board_agenda_2*.txt")].each do |f|
+  Dir[File.join(dir, 'archived_agendas', "board_agenda_2*.txt")].sort.each do |f|
       summaries[File.basename(f, '.*')] = ASF::Board::Agenda.summarize(f)
   end
   allpmcs = Set.new()

-- 
To stop receiving notification emails like this one, please contact
rubys@apache.org.