diff options
Diffstat (limited to 'bugzilla.rb')
-rw-r--r-- | bugzilla.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bugzilla.rb b/bugzilla.rb index 8fb6335..d0fe2db 100644 --- a/bugzilla.rb +++ b/bugzilla.rb @@ -212,7 +212,7 @@ class BugzillaPlugin < Plugin unless @template #@template = "Bug @BUGNO@; \"@DESC@\"; @PRODCOMP@; @STATUS@; @REPORTER@ -> @ASSIGNEE@; @URL@" - @template = "@URL@ \"@DESC@\"; @PRODCOMP@; @STATUS@; @REPORTER@ -> @ASSIGNEE@" + @template = "@URL@ \"@DESC@\"; @PRODCOMP@; @STATUS@; @REPORTER@:@ASSIGNEE@" end return @template @@ -369,7 +369,7 @@ class BugzillaPlugin < Plugin product = bugxml.get_text("product").to_s component = bugxml.get_text("component").to_s product_component = - "#{product} | #{component}".chomp(" | ") + "#{product}, #{component}".chomp(", ") bug_status = bugxml.get_text("bug_status").to_s issue_status = bugxml.get_text("issue_status").to_s |