diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2024-02-10 11:22:07 -0800 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2024-02-10 11:22:07 -0800 |
commit | 242113aa6a719477ddf8246ed9a6104f2b7b9d63 (patch) | |
tree | d2e75e658a3f14815eb4afca11b5022c774ae46c | |
parent | fix: variable naming error (diff) | |
download | rbot-bugzilla-master.tar.gz rbot-bugzilla-master.tar.bz2 rbot-bugzilla-master.zip |
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
-rw-r--r-- | bugzilla.rb | 2 |
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!(/^#/,'') |