diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2008-06-04 07:14:42 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2008-06-04 07:14:42 +0000 |
commit | 964a7da607f61d42bf0bb9de8b5ff7d1acf5616b (patch) | |
tree | 74b186b85a1343f98729bb4bcfbac65633b3c4f9 | |
parent | Include name for zilla instances. (diff) | |
download | rbot-bugzilla-964a7da607f61d42bf0bb9de8b5ff7d1acf5616b.tar.gz rbot-bugzilla-964a7da607f61d42bf0bb9de8b5ff7d1acf5616b.tar.bz2 rbot-bugzilla-964a7da607f61d42bf0bb9de8b5ff7d1acf5616b.zip |
Include name of zilla instnace for default print.
-rw-r--r-- | bugzilla.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bugzilla.rb b/bugzilla.rb index 6837726..de7533d 100644 --- a/bugzilla.rb +++ b/bugzilla.rb @@ -643,7 +643,7 @@ class BugzillaPlugin < Plugin def channel_defaults_show(m, params) begin defl = @defaults[params[:channel]] - m.reply "#{params[:channel]}: #{defl}" + m.reply "#{params[:channel]}: #{defl.name}" rescue ::Exception => e m.reply e.message end |