Skip to content

Commit

Permalink
Add the Volunteer matcher to the list.
Browse files Browse the repository at this point in the history
  • Loading branch information
sjl committed Sep 20, 2012
1 parent 02f7d3f commit 09c6120
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions matchers/__init__.py
Expand Up @@ -6,3 +6,4 @@
from sandwich import SandwichMatcher
from cletus import CletusMatcher
from jenkins import JenkinsMatcher
from volunteer import VolunteerMatcher
6 changes: 4 additions & 2 deletions nigel.py
Expand Up @@ -4,7 +4,9 @@
from twisted.internet import reactor, protocol
from twisted.python import log

from matchers import BrbMatcher, SifterMatcher, GifterMatcher, JenkinsMatcher
from matchers import (
BrbMatcher, SifterMatcher, GifterMatcher, JenkinsMatcher, VolunteerMatcher
)

IGNORED_USERS = os.environ.get('IGNORED', '').split(',')

Expand Down Expand Up @@ -92,7 +94,7 @@ def __init__(self, channel):
def buildProtocol(self, addr):
p = LogBot()
p.brain = Brain(p, [BrbMatcher(), SifterMatcher(), GifterMatcher(),
JenkinsMatcher()])
JenkinsMatcher(), VolunteerMatcher()])
p.factory = self
return p

Expand Down

0 comments on commit 09c6120

Please sign in to comment.