Skip to content

Commit

Permalink
Merge branch 'release'
Browse files Browse the repository at this point in the history
  • Loading branch information
Dustin J. Mitchell committed Jan 11, 2010
2 parents b9866f1 + 5d42eda commit 7488e4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildbot/status/web/console.py
Expand Up @@ -327,8 +327,8 @@ def getChangeForBuild(self, build, revision):
if change.revision == revision:
return change

# No matching change, return the last change in build
changes = build.getChanges()[:]
# No matching change, return the last change in build.
changes = list(build.getChanges())
changes.sort(key=self.comparator.getSortingKey())
return changes[-1]

Expand Down

0 comments on commit 7488e4c

Please sign in to comment.