Skip to content

Commit

Permalink
Fix authfail URI, removing spurious / (fixes #920)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dustin J. Mitchell committed Jul 19, 2010
1 parent 1244ce8 commit 118e4f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion master/buildbot/status/web/base.py
Expand Up @@ -102,7 +102,7 @@ def path_to_root(request):
return root

def path_to_authfail(request):
return path_to_root(request) + "/authfail"
return path_to_root(request) + "authfail"

def path_to_builder(request, builderstatus):
return (path_to_root(request) +
Expand Down

0 comments on commit 118e4f5

Please sign in to comment.