Merge pull request #634 from krOoze/make_queue_capitals

Make all queue names starting with capital
This commit is contained in:
Jon Leech 2017-12-20 16:07:32 -08:00 committed by GitHub
commit 4c7c92ef28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1021,7 +1021,7 @@ class ValidityOutputGenerator(OutputGenerator):
queues = 'Graphics + \nCompute'
else:
queues = cmd.attrib.get('queues')
queues = (' + \n').join(queues.capitalize().split(','))
queues = (' + \n').join(queues.title().split(','))
pipeline = cmd.attrib.get('pipeline')
if pipeline: