Skip to content
This repository has been archived by the owner on Sep 15, 2021. It is now read-only.

Commit

Permalink
Bug 671677: slavealloc should return the slavename as lower case; r=bear
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Aug 2, 2011
1 parent 0005870 commit 8f2b133
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/python/slavealloc/daemon/http/gettac.py
Expand Up @@ -9,7 +9,8 @@ class TacSlaveResource(resource.Resource):

def __init__(self, slave_name):
resource.Resource.__init__(self)
self.slave_name = slave_name
# lowercase the slave name, since some windows systems use the uppercase
self.slave_name = slave_name.lower()

def render_GET(self, request):
allocator = request.site.allocator
Expand Down

0 comments on commit 8f2b133

Please sign in to comment.