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
The following commit(s) were added to refs/heads/master by this push:
new 7a232fe3 support _ in addition to - for old minutes (#240)
7a232fe3 is described below
commit 7a232fe3ad81172fdac3df0f98181c50aa30b131
Author: Hervé Boutemy <[email protected]>
AuthorDate: Sun Jan 26 23:48:16 2025 +0100
support _ in addition to - for old minutes (#240)
fixes #238
---
tools/collate_minutes.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/collate_minutes.rb b/tools/collate_minutes.rb
index 1fc32e99..0e49fe4a 100755
--- a/tools/collate_minutes.rb
+++ b/tools/collate_minutes.rb
@@ -285,7 +285,7 @@ seen={}
-{41}\n # separator
Attachment\s\s?(\w+):[ ](.+?)\n # Attachment, Title
(.)(.*?)\n # separator, report
- (?=-{41,}\n(?:End|Attach)) # separator
+ (?=[-_]{41,}\n(?:End|Attach)) # separator
/mx).each do |attach,title,cont,text|
# We need to keep the start of the second line.