Skip to content

Commit

Permalink
Merge pull request #1515 from sa2ajj/fix-another-shadow
Browse files Browse the repository at this point in the history
fix overwriting tags
  • Loading branch information
Mikhail Sobolev committed Feb 2, 2015
2 parents 47bff6a + 522f1ff commit 41bce6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions master/buildbot/status/web/console.py
Expand Up @@ -290,8 +290,8 @@ def getAllBuildsForRevision(self, status, request, codebase, lastRevision,
continue

# We want to display this builder.
tags = builder.getTags() or ["default"]
for tag in tags:
builder_tags = builder.getTags() or ["default"]
for tag in builder_tags:
# Append this builder to the dictionary of builders.
builderList.setdefault(tag, []).append(builderName)

Expand Down

0 comments on commit 41bce6e

Please sign in to comment.