Skip to content

Commit

Permalink
fix use of nonexistent getBuildsForRequest
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Dec 25, 2013
1 parent c8710ec commit 48a1dbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion master/buildbot/status/buildrequest.py
Expand Up @@ -93,7 +93,7 @@ def getBuilds(self):
builder = self.status.getBuilder(self.getBuilderName())
builds = []

bdicts = yield self.master.db.builds.getBuildsForRequest(self.brid)
bdicts = yield self.master.db.builds.getBuilds(buildrequestid=self.brid)

buildnums = sorted([bdict['number'] for bdict in bdicts])

Expand Down

0 comments on commit 48a1dbc

Please sign in to comment.