Skip to content

Commit

Permalink
Merge smokingkapor/buildbot:master (PR #1061)
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Jan 28, 2014
2 parents a655a50 + 85ceb22 commit 1be4dfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion master/buildbot/status/web/build.py
Expand Up @@ -232,7 +232,7 @@ def content(self, req, cxt):

step['link'] = req.childLink("steps/%s" %
urllib.quote(s.getName(), safe=''))
step['text'] = " ".join(s.getText())
step['text'] = " ".join([str(txt) for txt in s.getText()])
step['urls'] = map(lambda x: dict(url=x[1], logname=x[0]), s.getURLs().items())

step['logs'] = []
Expand Down

0 comments on commit 1be4dfd

Please sign in to comment.