Skip to content

Commit

Permalink
Fix for log URL generation.
Browse files Browse the repository at this point in the history
  • Loading branch information
dustin authored and Dustin J. Mitchell committed Jul 5, 2009
1 parent 1b80f86 commit 0a3e2d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildbot/status/builder.py
Expand Up @@ -2097,11 +2097,11 @@ def getURLForThing(self, thing):
break
else:
return None
return prefix + "builders/%s/builds/%d/steps/%s/logs/%d" % (
return prefix + "builders/%s/builds/%d/steps/%s/logs/%s" % (
urllib.quote(builder.getName(), safe=''),
build.getNumber(),
urllib.quote(step.getName(), safe=''),
lognum)
urllib.quote(log.getName()))

def getChangeSources(self):
return list(self.botmaster.parent.change_svc)
Expand Down

0 comments on commit 0a3e2d5

Please sign in to comment.