Skip to content

Commit

Permalink
Fix for broken waterfall categories.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris AtLee committed Apr 1, 2010
1 parent fd9b9bb commit 64fd556
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildbot/db/connector.py
Expand Up @@ -371,7 +371,7 @@ def changeEventGenerator(self, branches=[], categories=[], committers=[], minTim
args.extend(list(branches))
if categories:
pieces.append("category IN %s" % self.parmlist(len(categories)))
args.extend(list(branches))
args.extend(list(categories))
if committers:
pieces.append("author IN %s" % self.parmlist(len(committers)))
args.extend(list(committers))
Expand Down

0 comments on commit 64fd556

Please sign in to comment.