Skip to content

Commit

Permalink
Hopefully fix the IRC notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
bgK authored and sev- committed Jul 28, 2018
1 parent ae3e1ac commit 190d936
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/scumm.py
Expand Up @@ -294,16 +294,16 @@ def builderRemoved(self, builderName):

def buildStarted(self, builderName, build):
#builder = build.getBuilder()
#self.log('Builder %r in category %s started' % (builder, builder.category))
#self.log('Builder %r in category %s started' % (builder, builder.getCategory()))
return

def buildFinished(self, builderName, build, results):
builder = build.getBuilder()

# only notify about builders we are interested in
#self.log('Builder %r in category %s finished' % (builder, builder.category))
#self.log('Builder %r in category %s finished' % (builder, builder.getCategory()))

if (self.categories != None and builder.category not in self.categories):
if (self.categories != None and builder.getCategory() not in self.categories):
return

result = build.getResults()
Expand Down

0 comments on commit 190d936

Please sign in to comment.