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 46c01ed fix syntax error
46c01ed is described below
commit 46c01ed6ff5b7a1ff9346bec8c6e19ba11afcefc
Author: Sam Ruby <[email protected]>
AuthorDate: Wed May 16 20:34:56 2018 -0400
fix syntax error
---
www/board/agenda/routes.rb | 2 +-
www/board/agenda/views/actions/feedback.json.rb | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/www/board/agenda/routes.rb b/www/board/agenda/routes.rb
index 8445ff3..25c791a 100755
--- a/www/board/agenda/routes.rb
+++ b/www/board/agenda/routes.rb
@@ -389,7 +389,7 @@ get '/new' do
url = 'private/committers/board/committee-info.txt'
info = ASF::SVN.getInfo(url, env.user, env.password)
revision, contents = ASF::SVN.get(url, env.user, env.password)
- ASF::Committee.load_committee_info(contents)
+ ASF::Committee.load_committee_info(contents, info)
# Get directors, list of pmcs due to report, and shepherds
@directors = ASF::Board.directors
diff --git a/www/board/agenda/views/actions/feedback.json.rb
b/www/board/agenda/views/actions/feedback.json.rb
index 358f33a..7c15cac 100644
--- a/www/board/agenda/views/actions/feedback.json.rb
+++ b/www/board/agenda/views/actions/feedback.json.rb
@@ -91,7 +91,7 @@ Agenda.parse(@agenda, :full).each do |item|
output << {
attach: item[:attach],
title: item['title'],
- sent: not @dryrun,
+ sent: (not @dryrun),
mail: mail.to_s
}
end
--
To stop receiving notification emails like this one, please contact
[email protected].