aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2008-06-03 06:00:45 +0000
committerroot <root@speedracer.orbis-terrarum.net>2008-06-03 06:00:45 +0000
commit3d0d025dc5196e53834487e523ca755507287abb (patch)
treeaaca9ba1900cd774f729dd0c6bfc70d245a2be95
parentFix typo in syntax. (diff)
downloadrbot-bugzilla-3d0d025dc5196e53834487e523ca755507287abb.tar.gz
rbot-bugzilla-3d0d025dc5196e53834487e523ca755507287abb.tar.bz2
rbot-bugzilla-3d0d025dc5196e53834487e523ca755507287abb.zip
Channels might not start with #.
-rw-r--r--bugzilla.rb2
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" },