diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2008-06-03 06:00:45 +0000 |
---|---|---|
committer | root <root@speedracer.orbis-terrarum.net> | 2008-06-03 06:00:45 +0000 |
commit | 3d0d025dc5196e53834487e523ca755507287abb (patch) | |
tree | aaca9ba1900cd774f729dd0c6bfc70d245a2be95 | |
parent | Fix typo in syntax. (diff) | |
download | rbot-bugzilla-3d0d025dc5196e53834487e523ca755507287abb.tar.gz rbot-bugzilla-3d0d025dc5196e53834487e523ca755507287abb.tar.bz2 rbot-bugzilla-3d0d025dc5196e53834487e523ca755507287abb.zip |
Channels might not start with #.
-rw-r--r-- | bugzilla.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bugzilla.rb b/bugzilla.rb index 496d440..c8d0eb5 100644 --- a/bugzilla.rb +++ b/bugzilla.rb @@ -730,7 +730,7 @@ plugin.map 'zilla instance show :zilla :full', plugin.map 'zilla default set :channel :zilla :eavesdrop', :action => 'channel_defaults_set', :requirements => { - :channel => /^#[^ ]+$/, + :channel => /^[^ ]+$/, :zilla => /^[^ ]+$/ }, :defaults => { :eavesdrop => "off" }, |