aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2024-02-10 11:22:07 -0800
committerRobin H. Johnson <robbat2@gentoo.org>2024-02-10 11:22:07 -0800
commit242113aa6a719477ddf8246ed9a6104f2b7b9d63 (patch)
treed2e75e658a3f14815eb4afca11b5022c774ae46c
parentfix: variable naming error (diff)
downloadrbot-bugzilla-master.tar.gz
rbot-bugzilla-master.tar.bz2
rbot-bugzilla-master.zip
fix: missing fieldHEADmaster
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
-rw-r--r--bugzilla.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/bugzilla.rb b/bugzilla.rb
index a4d88f5..8af205a 100644
--- a/bugzilla.rb
+++ b/bugzilla.rb
@@ -566,7 +566,7 @@ class BugzillaPlugin < Plugin
# bug aliases can contain
# 0-9, a-z, A-Z
# and then every punctuation except ","
- m.scan(MESSAGE_RE).each do |bug_comment|
+ m.message.scan(MESSAGE_RE).each do |bug_comment|
bugno = bug_comment[0]
comment = bug_comment[1] || ""
bugno.gsub!(/^#/,'')