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 2021/04/22 23:19:17 UTC

[whimsy] branch master updated: fix potential actions

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


The following commit(s) were added to refs/heads/master by this push:
     new c71ad0d  fix potential actions
c71ad0d is described below

commit c71ad0dae9e2b79b7ad75bc2faf9a7691e02ab34
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Thu Apr 22 19:19:02 2021 -0400

    fix potential actions
---
 www/board/agenda/views/actions/potential-actions.json.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www/board/agenda/views/actions/potential-actions.json.rb b/www/board/agenda/views/actions/potential-actions.json.rb
index d709fe1..41a429e 100644
--- a/www/board/agenda/views/actions/potential-actions.json.rb
+++ b/www/board/agenda/views/actions/potential-actions.json.rb
@@ -3,7 +3,7 @@
 #
 
 # get posted action items from previous report
-today = Date.today.strftime('board_agenda_%Y_%m_%d.txt')
+today = Date.today.strftime("#{FOUNDATION_BOARD}/board_agenda_%Y_%m_%d.txt")
 base = Dir["#{FOUNDATION_BOARD}/board_agenda_*.txt"].
  select {|file| file < today}.sort.last
 parsed = ASF::Board::Agenda.parse(IO.read(base), true)