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 8a0e5ae  constant may not have been defined
8a0e5ae is described below

commit 8a0e5ae461b432088590d2dba0d32e1e7567d0c1
Author: Sam Ruby <[email protected]>
AuthorDate: Wed Mar 23 15:20:23 2022 -0400

    constant may not have been defined
---
 lib/whimsy/asf/meeting-util.rb | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/lib/whimsy/asf/meeting-util.rb b/lib/whimsy/asf/meeting-util.rb
index 3376875..08dd35c 100644
--- a/lib/whimsy/asf/meeting-util.rb
+++ b/lib/whimsy/asf/meeting-util.rb
@@ -198,10 +198,11 @@ module ASF
 
     # return the current status of all inactive members
     def self.tracker(meetingsMissed)
-      cur_mtg_dir = MeetingUtil.get_latest(ASF::SVN['Meetings'])
+      meetings = ASF::SVN['Meetings']
+      cur_mtg_dir = MeetingUtil.get_latest(meetings)
       current_status = self.current_status(cur_mtg_dir)
 
-      _attendance, matrix, _dates, _nameMap = 
MeetingUtil.get_attend_matrices(MEETINGS)
+      _attendance, matrix, _dates, _nameMap = 
MeetingUtil.get_attend_matrices(meetings)
       inactive = matrix.select do |id, _name, _first, missed|
         id and missed >= meetingsMissed
       end

Reply via email to