aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2008-08-09 18:31:31 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2008-08-09 18:31:31 +0000
commit9d2ec087d11da640490e64edddad6020bb0e337a (patch)
tree43abd2c6176bbe5367f4f05d3a0a282935df7fc3
parentThread the long calls. (diff)
downloadrbot-bugzilla-9d2ec087d11da640490e64edddad6020bb0e337a.tar.gz
rbot-bugzilla-9d2ec087d11da640490e64edddad6020bb0e337a.tar.bz2
rbot-bugzilla-9d2ec087d11da640490e64edddad6020bb0e337a.zip
Change default template per solars request.
-rw-r--r--bugzilla.rb4
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