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
commit ff6e517afcae38198beec9ddcd1ab42637eea1c6 Author: Sebb <[email protected]> AuthorDate: Tue Mar 14 23:30:58 2023 +0000 Wrap output in array for easier handling --- lib/whimsy/asf/member.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/whimsy/asf/member.rb b/lib/whimsy/asf/member.rb index dc7836c1..d94863d9 100644 --- a/lib/whimsy/asf/member.rb +++ b/lib/whimsy/asf/member.rb @@ -201,9 +201,9 @@ module ASF Wunderbar.error "Duplicate ids: #{ids} in #{name} entry" end if keys_wanted - y.yield status, name, ids.first, entry, self.parse_entry(entry, keys_wanted) + y.yield [status, name, ids.first, entry, self.parse_entry(entry, keys_wanted)] else - y.yield status, name, ids.first, entry + y.yield [status, name, ids.first, entry] end end else # can this happen?
