Skip to content

Commit

Permalink
Comment added for optional builderstatus workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
hborkhuis committed Apr 27, 2012
1 parent b8a1926 commit e1fc560
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions master/buildbot/status/builder.py
Expand Up @@ -265,8 +265,9 @@ def prune(self, events_only=False):

# IBuilderStatus methods
def getName(self):
# str needed for weird reasons that sometimes builderstatus page is not shown
return str(self.name)
# if builderstatus page does show not up without any reason then
# str(self.name) may be a workaround
return self.name

def getState(self):
return (self.currentBigState, self.currentBuilds)
Expand Down

0 comments on commit e1fc560

Please sign in to comment.