Skip to content

Commit

Permalink
Include all sourcestamps as list of dicts in the build status diction…
Browse files Browse the repository at this point in the history
…ary.
  • Loading branch information
hborkhuis committed May 8, 2012
1 parent ef6cd96 commit 25a918a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion master/buildbot/status/build.py
Expand Up @@ -453,7 +453,7 @@ def asDict(self):
result['builderName'] = self.builder.name
result['number'] = self.getNumber()
# TODO: enable multiple sourcestamps to outside the buildstatus
result['sourceStamp'] = self.getSourceStamps()[0].asDict()
result['sourceStamps'] = [ss.asDict() for ss in self.getSourceStamps()]
result['reason'] = self.getReason()
result['blame'] = self.getResponsibleUsers()

Expand Down

0 comments on commit 25a918a

Please sign in to comment.